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:20943
Vulnerability from csaf_redhat - Published: 2026-05-26 14:49 - Updated: 2026-06-29 04:50A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64 | — |
Workaround
|
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64 | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64 | — |
Workaround
|
A flaw was found in Argo CD, a GitOps continuous delivery tool for Kubernetes. A missing authorization and data-masking gap in the ServerSideDiff endpoint allows an attacker with read-only access to extract sensitive Kubernetes Secret data. This information disclosure occurs by leveraging the Kubernetes API server's Server-Side Apply dry-run mechanism, potentially exposing critical configuration and credentials.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_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": "Important: Red Hat OpenShift GitOps v1.19.4 security update",
"title": "Topic"
},
{
"category": "general",
"text": "An update is now available for Red Hat OpenShift GitOps.\nBug Fix(es) and Enhancement(s):\n* GITOPS-8784 (Service-CA annotation removed from argocd-server Service during v1.12.3 -\u003e v1.12.4 upgrade path, persists in later versions)",
"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:20943",
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42880",
"url": "https://access.redhat.com/security/cve/CVE-2026-42880"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_gitops/1.19/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_gitops/1.19/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_20943.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift GitOps v1.19.4 security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:04+00:00",
"generator": {
"date": "2026-06-29T04:50:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:20943",
"initial_release_date": "2026-05-26T14:49:30+00:00",
"revision_history": [
{
"date": "2026-05-26T14:49:30+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-26T14:49:39+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50: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 GitOps 1.19",
"product": {
"name": "Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_gitops:1.19::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift GitOps"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3Ab6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779210058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779211724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3Ae9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779210454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3A63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779209907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-image-updater-rhel8@sha256%3A4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8\u0026tag=1779211412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3A2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779211476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779210530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3A12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779209965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3A0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779210473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3Af5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779210442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-operator-bundle@sha256%3Ac41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-operator-bundle\u0026tag=1779213632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3Afd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779209869"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3A093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779210058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779211724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3A7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779210454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3A0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779209907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-image-updater-rhel8@sha256%3Ac769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8\u0026tag=1779211412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3A37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779211476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3Ade5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779210530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3A38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779209965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3Aff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779210473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779210442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3A63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779209869"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3A4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779210058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779211724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3Af9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779210454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3A084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779209907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-image-updater-rhel8@sha256%3A021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8\u0026tag=1779211412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3Aef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779211476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3Ac3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779210530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3Ac1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779209965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3A6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779210473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779210442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3A804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779209869"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3A12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779210058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779211724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3A474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779210454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3Aaacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779209907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-image-updater-rhel8@sha256%3A0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8\u0026tag=1779211412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3A1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779211476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779210530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3Aa8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779209965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3Aa02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779210473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779210442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3Af0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779209869"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64 as a component of Red Hat OpenShift GitOps 1.19",
"product_id": "Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.19"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:49:30+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_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 OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:49:30+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:49:30+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:49:30+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-42880",
"cwe": {
"id": "CWE-201",
"name": "Insertion of Sensitive Information Into Sent Data"
},
"discovery_date": "2026-05-07T23:00:58.796407+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2467882"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Argo CD, a GitOps continuous delivery tool for Kubernetes. A missing authorization and data-masking gap in the ServerSideDiff endpoint allows an attacker with read-only access to extract sensitive Kubernetes Secret data. This information disclosure occurs by leveraging the Kubernetes API server\u0027s Server-Side Apply dry-run mechanism, potentially exposing critical configuration and credentials.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "argoproj/argo-cd: Argo CD: Information disclosure of Kubernetes Secret data via Server-Side Apply dry-run mechanism",
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42880"
},
{
"category": "external",
"summary": "RHBZ#2467882",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467882"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42880",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42880"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42880",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42880"
},
{
"category": "external",
"summary": "https://github.com/argoproj/argo-cd/security/advisories/GHSA-3v3m-wc6v-x4x3",
"url": "https://github.com/argoproj/argo-cd/security/advisories/GHSA-3v3m-wc6v-x4x3"
}
],
"release_date": "2026-05-07T22:20:39.506000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:49:30+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20943"
},
{
"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 GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:093d586a268c1129068c4c92ce4e23de78bf72944a392beaa46bd2364ca0336b_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:12cfb7c85072330ccc14faa278f2dcc4ce87972fa46432ba00c609c3656e092d_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:4770392a4f37b9e8b6f8d8a37748243fbf4f63eabc4125b0e31f55f927b4598f_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:b6773a29fc3d9504143f9aed3438781e04b4262a4ac46d1926f2ce76c87ad0c9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:474bf4e9a76c93e3983695ce125a7836d5bd0bde611bbb48b8b5b8be721b15de_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:7078ad00e7f3573c36de3bd2b970d77e9d4445f810d4d65f2fb19286f4e9d89f_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:e9feb44bbe30da9b742c50d01de7768b1e452384fa11a65c689ee7d128fa56da_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:f9ee62dc4533db9cde78c7595efc92cb708d31263dad4c7572af141ceb0a385e_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:084929fa28329d1382a0667a61e83e349f55369d80f71ef2f6af8a88dcda19d1_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c72e0769629dafa087f03221987ba896604d4e136fbf9a28666b9c55c8d987c_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:63cbd262105c2b5a0173f842a879fc5a036e52578bd48af9bc470eb48a660595_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:aacb1fd3d0cd707059b4f94730c1f8cdc84ba8442e52299480d87eaa0350dfeb_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:021a2b93438ab7a0cdb1ee15ce32c38cccb556802203b7f79604b21fde0dfe38_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:0c81eedce2f08c304fea9aa8662fed9f845ac13638bca8f5a9b1684819dc207e_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:4c0a72935660b5f38b9c981432195892853e798e0c07e637bd9e3bcf90e12987_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-image-updater-rhel8@sha256:c769040e7b362ea4918e077b1481b1059fbf5d762b8e2444631d3e08d391434a_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:5919feb409837ec88c5197df633639a697c5ec6138cd2620f1f452ef5a3bd365_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:66c18c542c66eb54f38c8c22ca7ee83b14dfaf4c89525a4958cece1c608d9997_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:990bcf2561d70247f42cfac2d9ed81bad938f113a79e4c254c07a6b25a3f4074_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:9e1f91b60724585e27ec0ddc860eb359d22f4a4c13369b453a4aec4c7e05f319_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:1b7901e494b7274e5fe66969d535e7e8e104b0a1d922830264b63cd011aee636_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:2d7b4f9c6cc56113f6fbf280906ad12800cd6000c6176b8da23749477d51e5f6_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:37b2555153f4260511bb69e79c877661edf4f54a91c235255d0fa7620e114256_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ef149f4672aa43d14957cdc42c5bdea2e3a42ae00b28b5b12dcd4939f7efcd40_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:781e28a4fd1e3e49d0964a7cc23f35419ef82a8b58681fed0b52c959a796abe9_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:867432aa79ea7b612d90e6a6a2e3a16cb14f9d4a0ad22f2358f2809cb717e8a9_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:c3a631bdb8c4805a7a82cf3a81b010a2dd4fb837e9cddf3bad0720c6307c2996_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:de5acfcacf2d7ddc3a32c3eb8ca542d52bbe59b2fcd06b88b0e1a2508d539635_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:c41e74df4743068317457d2db0209e08be023758add611f49769900e58299a93_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:4faa0e4d78fe939ba1feb445bb58512ace91cbe27c09700f18ea04c52085b824_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:5e4639ee0f9205d3d23b9bb6e619b9486380242c10a0322372f0c050a49cd26f_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:71a3c5c90900a45901d2a692ebe54f1701a80ca68a6d2f56176e9b318156a441_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:f5225ac218e3b2c0a5a83cbca02102199ae9ee8d3befe2aa51c38ed7218ed59c_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c76d940d937526e6d31d4eb836b15a161f03cbe75321744bb5f48439e932693_amd64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:6ed96a4f70d576b146dc9d95eea340001d2c41f815f145a5aa26d6578ab09f79_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:a02d6193b4dbc71db4dd298912e770769619cf9350bf9b765427d979014a2327_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ff1158972bba8529764f3263191ea64d84f9243ebd5b7db51497b1daa57177ba_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:63026c01695ae0adb5ce36116198a3fe13007139d7bf9f3b46f617a3c608f04e_arm64",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:804d00db5272cc3cf81aeae51dd561659782ccd0ef9e6e0b50e9f7e3531496f6_ppc64le",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:f0e3a4dd6fcc53ea7dd01da97ce572b621e085e2e0097e931a61c5a06a972add_s390x",
"Red Hat OpenShift GitOps 1.19:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:fd60effbb7119ef8c9adc580ae8d6751e2ccba7ce0463e604573e8c284d8eb3d_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "argoproj/argo-cd: Argo CD: Information disclosure of Kubernetes Secret data via Server-Side Apply dry-run mechanism"
}
]
}
RHSA-2026:20946
Vulnerability from csaf_redhat - Published: 2026-05-26 14:54 - Updated: 2026-06-29 04:50A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64 | — |
Workaround
|
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64 | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_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": "Important: Red Hat OpenShift GitOps v1.18.6 security update",
"title": "Topic"
},
{
"category": "general",
"text": "An update is now available for Red Hat OpenShift GitOps.",
"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:20946",
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_gitops/1.18/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_gitops/1.18/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_20946.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift GitOps v1.18.6 security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:05+00:00",
"generator": {
"date": "2026-06-29T04:50:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:20946",
"initial_release_date": "2026-05-26T14:54:58+00:00",
"revision_history": [
{
"date": "2026-05-26T14:54:58+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-26T14:55:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift GitOps 1.18",
"product": {
"name": "Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_gitops:1.18::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift GitOps"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3Aa4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779116461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3Adcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779115298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3A4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779115163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3A12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779115192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3A68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779116502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779115545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3A45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779116359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3A27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779116228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779115144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-operator-bundle@sha256%3Acf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-operator-bundle\u0026tag=1779118126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3Ad784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401?arch=amd64\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779114978"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3A11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779116461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779115298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3Abd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779115163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3A2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779115192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3Aec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779116502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779115545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3A567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779116359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3Aba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779116228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779115144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3A09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779114978"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3Acd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779116461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3A355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779115298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3A4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779115163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3Abd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779115192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3A8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779116502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779115545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3A7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779116359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3A0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779116228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3A2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779115144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3Ab628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779114978"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argo-rollouts-rhel8@sha256%3A6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8\u0026tag=1779116461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel8@sha256%3Ad06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8\u0026tag=1779115298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-agent-rhel8@sha256%3A55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8\u0026tag=1779115163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-extensions-rhel8@sha256%3Aad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8\u0026tag=1779115192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/argocd-rhel9@sha256%3Abb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel9\u0026tag=1779116502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-plugin-rhel8@sha256%3A4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8\u0026tag=1779115545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"product_identification_helper": {
"purl": "pkg:oci/dex-rhel8@sha256%3Ab567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8\u0026tag=1779116359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8@sha256%3Af084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8\u0026tag=1779116228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gitops-rhel8-operator@sha256%3Ae72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator\u0026tag=1779115144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"product": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"product_id": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel8@sha256%3A7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218?arch=s390x\u0026repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8\u0026tag=1779114978"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64 as a component of Red Hat OpenShift GitOps 1.18",
"product_id": "Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
},
"product_reference": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64",
"relates_to_product_reference": "Red Hat OpenShift GitOps 1.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:54:58+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_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 OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:54:58+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:54:58+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:54:58+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"known_not_affected": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T14:54:58+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:20946"
},
{
"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 GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:11d3830c3d9691d77aa1413af45a1bce1aca931b000e7f5da75172fb76c4145b_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:6fc8c53df3e32e265886d662c4acb4afc5ea290e31d1435d7ec1e0e2678daca5_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:a4e3a3345862f1dbefe620bce99794e01fca58e650f3291ec4519a953398e726_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:cd70a3fa917e91985111bfe950282be66e89ba08d32bb32186126e8df1f56acd_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4cc779a08ad6832c88e680e2e82a931459aea07691d2db7246e12dc66bb9fe2f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:4d138120e590ac5c5d007f07abae74c68d06e0b137cb60de44644c1ad351bc61_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:55bc37227d5b0ec3626ab92ccf9d6d594ad4233d7b11fc0bfead2b7f1ae3f825_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-agent-rhel8@sha256:bd95b790234bf8524db5c024b2e5f6f2457b4f3c72b1476fc73a5a2f64077dd6_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:12a6fb97bd7ebe6f9c04e04a5fc302343b7bf6fcd95e365efad7861fbe502d3b_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:2d8b62a8209079daeaeab25881089c160f1585658fd954619ba2ca2fa7185ecd_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:ad940c4fd6e141a04fb58da780443d2c24945759de6380b6328ef1fa2e8e1f57_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:bd139d8c24c811320221406edbb7a66618e174ca538c3784a73feb60a0558a0a_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:1101419bfdba559e9bb01a4cd28517393e6ff4a01a73fd46e6328ea6846e7fb5_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:355472dfe72924d5e1e1dc24553a2fd7f3f79d4751f3df52ee04fa903658e4d2_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:d06ac49a21994874eb28b8c6a0f5acb4d09999d723dd887436210d047e80153d_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:dcead116f99d5c00012dd9207156048142ee24bc70862f36a7bcf894e5ae1ee9_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:68019fbee61af5ef1368e3e496e462d2f9dbe5a96fa817f9326ec14d907fb0c6_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:8ee41b5ede1963eead37122685b2201a61859e6ef416098dc9a8d584d0be3e62_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:bb58c6d2b73a99a564f7ef9c142ee39a6405cddead621cc9ac70cf424f1a79a6_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/argocd-rhel9@sha256:ec84b7694e343de23afb17e7e12445babb38be2c353456f5924ffe2909161432_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:0ad1db16a7868c92ff6fe5e0a019ccbb24b96de1b382564ae2470cd907498b12_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:4ba81a63701fcb3a5f726035aa27b044a960456cfa6f8bb84078e1f6af0bcf00_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:5d6d5f2382315719bb2e02124d58226ac86d3639c061c2b4107ea079a0787966_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:6a7901155bd171509d8d1181784cb51574468e728232b7565a9b724a43e31390_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-operator-bundle@sha256:cf81d0157a9065d04ab880096a613e0400c4bcda36f01eeb94879389cec30159_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:2c6e1ccc3c675bd81fc997b4427604815dbf254b026c0aae299d08bf92df2384_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:323104509716a3c2c6fc494660a5355ea5d84eb8567f0f4b7285fa432801c0cc_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:9181d851aea9b7dacb5f855dbf2bffbb560a4c1d812b66141524bbc7e39d74d3_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:e72f323007da1fb29c1fdc89c548910e1517018ed3ca2ea5708a55d582f492e2_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:0c674dbabf2cd80152999e9c702a0bd9a51819b0f28d21234b91751693a95948_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:27c2e6772639c2a5d3b4250997fd7a42c3b55c825bdc3f9d706e0b276ccabbff_amd64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:ba02a6b9e6f223846b03704c2ced23a52c101cfab2e719e6a129081e84cb1416_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:f084311d293185a914d0369489f4c75c3d5fd71f63dd4f34245c5a59481c83ef_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:09b9a7d4bba32bf250d8c20283ca016b130dea0bd91a29afd0c06cd73607d51d_arm64",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:7ca2257af92a2f9887b9f31a17cbf0f0a10c43df24b72824cb4514de5642a218_s390x",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:b628e71fca45b7bba88350fec64a10843ccfa3c42269445f3f4f11cdf6b5b03f_ppc64le",
"Red Hat OpenShift GitOps 1.18:registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:d784c8cdfa070628bd611cb10658e5a8f2e0640eaa5104e1c37c739da4d07401_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:21017
Vulnerability from csaf_redhat - Published: 2026-05-26 17:12 - Updated: 2026-06-29 04:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Red Hat Quay and mirror registry for Red Hat OpenShift. The log export feature in these products allows an authenticated user to specify an arbitrary callback URL. A backend process then makes server-side HTTP requests to this provided URL. This vulnerability, known as Server-Side Request Forgery (SSRF), could allow an attacker to send requests from the application's internal network, potentially leading to the disclosure of sensitive information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Red Hat Quay's container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user's in-progress image upload.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Red Hat Quay's handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library's failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application's core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution "Gadget" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 | — |
A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution "Gadget" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14.8 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.14.8",
"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:21017",
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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-62718",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2377",
"url": "https://access.redhat.com/security/cve/CVE-2026-2377"
},
{
"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-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32589",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32590",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33894",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-39892",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40192",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40895",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42033",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42035",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42039",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42041",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42043",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42044",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21017.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.14.8",
"tracking": {
"current_release_date": "2026-06-29T04:50:05+00:00",
"generator": {
"date": "2026-06-29T04:50:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21017",
"initial_release_date": "2026-05-26T17:12:40+00:00",
"revision_history": [
{
"date": "2026-05-26T17:12:40+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T17:21:47+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:05+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.14",
"product": {
"name": "Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.14::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-bundle\u0026tag=1778873727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3A36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-bundle\u0026tag=1778874411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Abc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1778873623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Ae76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778874087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1778873627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3Ac82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4?arch=amd64\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1778873589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3Aa620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-bundle\u0026tag=1779693417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Adb535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1778873585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1779689392"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1778873623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Ab83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778874087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Aeade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1778873627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72?arch=arm64\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1778873589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1778873585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Aa46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1779689392"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1778873623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778874087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1778873627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1778873589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1778873585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Afca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1779689392"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel8\u0026tag=1778873623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778874087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Afac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel8\u0026tag=1778873627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3Ac36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42?arch=s390x\u0026repository_url=registry.redhat.io/quay/clair-rhel8\u0026tag=1778873589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel8\u0026tag=1778873585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-rhel8\u0026tag=1779689392"
}
}
}
],
"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:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64 as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"relates_to_product_reference": "Red Hat Quay 3.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le as a component of Red Hat Quay 3.14",
"product_id": "Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.14"
}
]
},
"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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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 Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-62718",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-09T15:01:48.111177+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456913"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw has limited impact due to combination of non-default conditions to exploit: the attacker must be able to control or influence URLs passed to axios in a server-side context, the application must have both `HTTP_PROXY` and `NO_PROXY` configured, and the proxy itself must be positioned to act on the misdirected traffic or have been compromised by the attacker to intercept the rerouted traffic.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "RHBZ#2456913",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456913"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-62718",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-62718"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1",
"url": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2",
"url": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df",
"url": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/pull/10661",
"url": "https://github.com/axios/axios/pull/10661"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/releases/tag/v1.15.0",
"url": "https://github.com/axios/axios/releases/tag/v1.15.0"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5"
}
],
"release_date": "2026-04-09T14:31:46.067000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-2377",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-02-11T21:02:44.495000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2439201"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay and mirror registry for Red Hat OpenShift. The log export feature in these products allows an authenticated user to specify an arbitrary callback URL. A backend process then makes server-side HTTP requests to this provided URL. This vulnerability, known as Server-Side Request Forgery (SSRF), could allow an attacker to send requests from the application\u0027s internal network, potentially leading to the disclosure of sensitive information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: quay: quay: Server-Side Request Forgery via log export functionality",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Due to the intended and supported use case of Openshift Mirror Registry, deployment in an offline or network-isolated environment, the impact for this product has been downgraded to `Moderate`.\n\nEven in case of compromise, the blast radius is restricted to mirror-registry. It can not be escalated outside the core product. This vulnerability has been scored based on the lack of change of scope.",
"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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2377"
},
{
"category": "external",
"summary": "RHBZ#2439201",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439201"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2377",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2377"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2377",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2377"
}
],
"release_date": "2026-04-08T16:18:10.324000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mirror-registry: quay: quay: Server-Side Request Forgery via log export functionality"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "svgo: SVGO: Denial of Service via XML entity expansion"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32589",
"cwe": {
"id": "CWE-639",
"name": "Authorization Bypass Through User-Controlled Key"
},
"discovery_date": "2026-03-12T14:43:07.878000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446963"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user\u0027s in-progress image upload.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: quay: insecure direct object reference in BlobUpload",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials to the Quay registry. Unauthenticated users cannot exploit this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "RHBZ#2446963",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446963"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32589",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32589"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mirror-registry: quay: insecure direct object reference in BlobUpload"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32590",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-03-12T14:43:11.443000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446964"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: remote code execution using pickle deserialization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials. The attacker must be authenticated to the registry, either through the web interface or through a container tool such as Podman.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "RHBZ#2446964",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446964"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32590",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32590"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "mirror-registry: remote code execution using pickle deserialization"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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-33894",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-27T21:02:52.462999+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452464"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "RHBZ#2452464",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452464"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33894",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33894"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc2313#section-8",
"url": "https://datatracker.ietf.org/doc/html/rfc2313#section-8"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp"
},
{
"category": "external",
"summary": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE",
"url": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE"
},
{
"category": "external",
"summary": "https://www.rfc-editor.org/rfc/rfc8017.html",
"url": "https://www.rfc-editor.org/rfc/rfc8017.html"
}
],
"release_date": "2026-03-27T20:45:49.583000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_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.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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-39892",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-08T22:00:59.416053+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456735"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In default configurations Red Hat products isolate service processes from total system access. Should an attacker be able to exploit this vulnerability their impact will be limited to that service account and they will not have access to the broader system.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "RHBZ#2456735",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456735"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-39892",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39892"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/08/12",
"url": "http://www.openwall.com/lists/oss-security/2026/04/08/12"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5",
"url": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq",
"url": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq"
}
],
"release_date": "2026-04-08T20:49:41.967000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API"
},
{
"cve": "CVE-2026-40192",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-04-16T00:00:49.590876+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library\u0027s failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "RHBZ#2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40192",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40192"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628",
"url": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/pull/9521",
"url": "https://github.com/python-pillow/Pillow/pull/9521"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j",
"url": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j"
},
{
"category": "external",
"summary": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb",
"url": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb"
}
],
"release_date": "2026-04-15T22:53:56.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_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 Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "RHBZ#2460297",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460297"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40895",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40895"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653",
"url": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653"
}
],
"release_date": "2026-04-21T19:59:59.759000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
},
{
"cve": "CVE-2026-42033",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:20.937507+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461607"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "RHBZ#2461607",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461607"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42033",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42033"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf"
}
],
"release_date": "2026-04-24T17:36:44.132000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution"
},
{
"cve": "CVE-2026-42035",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:17.109481+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461606"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application\u0027s core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Arbitrary HTTP header injection via prototype pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "RHBZ#2461606",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461606"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42035",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42035"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9"
}
],
"release_date": "2026-04-24T17:38:07.752000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "axios: Axios: Arbitrary HTTP header injection via prototype pollution"
},
{
"cve": "CVE-2026-42039",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T19:01:44.887156+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461630"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "RHBZ#2461630",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461630"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42039",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42039"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9"
}
],
"release_date": "2026-04-24T18:01:30.775000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data"
},
{
"cve": "CVE-2026-42041",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:41.034289+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461629"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution \"Gadget\" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "RHBZ#2461629",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461629"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42041",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42041"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63",
"url": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63"
}
],
"release_date": "2026-04-24T17:55:30.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling"
},
{
"cve": "CVE-2026-42043",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-04-24T19:01:22.552379+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461626"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: NO_PROXY bypass via crafted URL",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "RHBZ#2461626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461626"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42043"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7"
}
],
"release_date": "2026-04-24T17:54:42.668000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: NO_PROXY bypass via crafted URL"
},
{
"cve": "CVE-2026-42044",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:13.418725+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461624"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution \"Gadget\" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "RHBZ#2461624",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461624"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42044",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42044"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23"
}
],
"release_date": "2026-04-24T17:49:49.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-26T17:12:40+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/11458",
"product_ids": [
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21017"
},
{
"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.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:4dcd3b60f93e03d7d59e7dedc2ffcaa835de53ce672a179527f26ffe295473d2_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:7a0ec7eb2f7e1cd78834a108c84edb7f3a9f769209ba98b8bb0d1f7d66344e72_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c36f983f25aad87857f89920f0878fb081f9c55d471e98fa25a3af0507da4b42_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/clair-rhel8@sha256:c82534a20a7a5e2ecd49ac6307df13ede380c8b3d7ca4c6978aed1efab9c6ae4_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:36377e0f89e28bb05dd45c424ac336b2884e91267a118763ddd9a1e8d8f75295_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:087c088a5f5da9a54608fd93bbc47654b7c24661dfcdf3b64d04d496924a5e4b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:0e7f72c6427b9c941a765470683c3cfe81644bd0337b88c5f3d9021978aa38de_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:496e288875b50bb6f5ff1f92cd95a8df52ee02e97178e4134fcc3fc0b829f3b1_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:bc8584dbad964920db04fb5fa27044cb0219f7d736da16abe5deec2fb3d7b1a8_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:1fa815f5c0f997f55ca2db83575360f084d0ead955e62adcb7b4f0b53b1a01c7_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:532d123f74a39a92346daf91d69f2eebc97d48d49cf89b21ec4114824cb23b2d_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:b83c36737a574a3454d1be87b9bb7a513eab7b5071c662fde05e791ec2596ee2_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:e76507eecc44ee17c66566769ff427c561df85db700c2b16ead0ecd894f40b9f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:052bf6483aa0e3cfae7cc28822bb05b7ebf1c2dd2019bae53874db19a7ced51f_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:0f209a6799f9eb6987d9479fc6631d3f6dabdf89faa0059c9c62010f4f46e2ba_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:eade47dd4e39ed346f9ea867a90e07fc70ff2ff4a6cce4a21ac77f88e9abad10_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-builder-rhel8@sha256:fac5b4a10d565051251ec328df69026458ede4dadc48b401dcb923979bf96b88_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9e026e4b86da6a0719b0bf6973d465cd542ead1715afb516e5e37ae8d9057964_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-bundle@sha256:a620b5e2749ad150d7ee07bd240f29a69ad2593a522869bd334441e9fb346e0e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:6753b3d04a0cbf3ae35f8141df96505f099a39645ae3e68ae0b417ac572be64e_ppc64le",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:85c3bbf75379da98fbffe5ea1c53893a11ce42939d68687f16a0b687a9ba4b33_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:9fc318dd2650e6f3b68084e2f155a5485395026cba186018f6a2d5e70284bb6a_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-operator-rhel8@sha256:db535f8a5dea4124ee8140a48362d0a631cc19158a3944f0059219a5c7b44e3e_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:4ae7d2d72a2370bd5401f570e21386bc9a6df0b145030060c922fcf754c7839b_s390x",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:9f5d146fc72a09d9067705a35274a251708cebc4c6a7e50615bdbce3e128c097_amd64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:a46c3fd8bb72616f07d2fb47eae9b060ea6c5135ec365d7ddc0dc18054da0b1b_arm64",
"Red Hat Quay 3.14:registry.redhat.io/quay/quay-rhel8@sha256:fca718bcd95971e571d13f9139e2f40c2daeca9605c669d73ed3055d9e3a53e2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget"
}
]
}
RHSA-2026:21657
Vulnerability from csaf_redhat - Published: 2026-06-03 13:57 - Updated: 2026-06-29 04:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64 | — |
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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
Workaround
|
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_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:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_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:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_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:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_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:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_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:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_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:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_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:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_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:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_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:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_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:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_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:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_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:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_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:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_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:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_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:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — |
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:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_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:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_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:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_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:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_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:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_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:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_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:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_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:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_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:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_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:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_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:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_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:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_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:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_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:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_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:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_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:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_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:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_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:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_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:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_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:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_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:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — |
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:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_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:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_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:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_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:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_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:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_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:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — |
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:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_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:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_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:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_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:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_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:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_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:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — |
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:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — |
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:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_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:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_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:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_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@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_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@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — |
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:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — |
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:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — |
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:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — |
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:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — |
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:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_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:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_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:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_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:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_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:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_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:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_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:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_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:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_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:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_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:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_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:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_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:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_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:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_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:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_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:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_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:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_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:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_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:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_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:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_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:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_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:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_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:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_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:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_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:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_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:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_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:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_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:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_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:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — |
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:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_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:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_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:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_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:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_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:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_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:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_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:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_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:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_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:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_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:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_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:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_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:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_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:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_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:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_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:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_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:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_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:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_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:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_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:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_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:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_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:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_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:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_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:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_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:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_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:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_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:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_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:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_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:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_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:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — |
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:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_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:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_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:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_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:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_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:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_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:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_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:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_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:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_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:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_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:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_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:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_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:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_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:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_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:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_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:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_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:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_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:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_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:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_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:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_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:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_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:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — |
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:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_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:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_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:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_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:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — |
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:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — |
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:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_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:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_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:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_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:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_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:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_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:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_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:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_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:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_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:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_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:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_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:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_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:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_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:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_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:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_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:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_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:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_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:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_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:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_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:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_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:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — |
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:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — |
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:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_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:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_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:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_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:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_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:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_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:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_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:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_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:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_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:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_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:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_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:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_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:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_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:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_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:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — |
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:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_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:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_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:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_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:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_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:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_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:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — |
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:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_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:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_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:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — |
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:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_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:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_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:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_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:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_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:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_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:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — |
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:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — |
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:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — |
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:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_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:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_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:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_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:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_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:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_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:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_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:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_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:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_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:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — |
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:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — |
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:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_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:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_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:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_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:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_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:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_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:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_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:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_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:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_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:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_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:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_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:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — |
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:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_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:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_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:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_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:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_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:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_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:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_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:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_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:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — |
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:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — |
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:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_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:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_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:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_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:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_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:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_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:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_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:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — |
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:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_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:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_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:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_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:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_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:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_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:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_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:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_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:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_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:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_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:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_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:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_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:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_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:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_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:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_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:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_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:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_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:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_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:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — |
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:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — |
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:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_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:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — |
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:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_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:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_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:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_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:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_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:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — |
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:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_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:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_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:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_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:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — |
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:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_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:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_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:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_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:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_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:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_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:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_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:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_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:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_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:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_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:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_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:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_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:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_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:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_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:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_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:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_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:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_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:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_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:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — |
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:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_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:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — |
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:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_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:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_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:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — |
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:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_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:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_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:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_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:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_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:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_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:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_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:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_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:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_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:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_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:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_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:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_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:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_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:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_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:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — |
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:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_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-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_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@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_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:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_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:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_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:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_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:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_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:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_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:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_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:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_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:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_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:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_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:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_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:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_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:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_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:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_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:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_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:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — |
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:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_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:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_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:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_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:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_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:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — |
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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_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:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_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:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_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:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_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:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — |
Workaround
|
A flaw was found in the cmd/compile package in the Go standard library. The compiler fails to correctly check for integer overflow or underflow in arithmetic operations involving loop induction variables. As a result, the compiler allows invalid memory indexing to occur at runtime, potentially leading to memory corruption.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_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:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_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:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_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:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_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:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_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:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_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:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_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:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_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:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_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:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_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:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_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:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_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:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_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:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_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:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_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:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — |
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:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_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:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_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:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_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:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_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:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_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:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_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:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_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:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_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:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_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:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_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:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_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:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_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:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_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:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_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:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_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:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_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:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_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:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_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:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_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:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_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:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — |
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:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_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:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_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:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_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:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_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:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_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:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — |
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:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_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:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_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:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_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:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_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:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_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:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — |
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:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — |
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:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_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:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_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:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_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@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_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@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — |
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:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — |
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:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — |
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:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — |
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:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — |
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:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_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:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_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:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_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:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_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:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_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:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_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:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_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:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_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:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_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:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_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:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_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:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_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:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_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:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_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:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_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:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_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:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_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:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_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:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_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:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_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:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_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:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_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:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_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:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_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:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_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:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_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:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_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:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — |
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:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_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:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_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:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_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:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_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:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_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:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_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:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_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:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_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:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_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:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_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:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_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:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_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:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_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:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_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:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_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:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_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:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_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:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_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:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_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:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_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:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_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:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_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:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_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:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_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:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_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:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_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:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_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:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_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:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — |
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:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_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:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_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:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_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:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_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:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_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:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_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:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_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:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_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:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_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:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_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:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_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:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_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:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_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:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_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:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_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:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_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:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_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:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_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:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_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:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_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:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — |
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:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_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:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_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:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_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:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — |
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:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — |
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:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_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:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_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:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_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:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_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:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_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:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_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:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_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:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_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:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_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:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_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:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_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:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_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:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_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:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_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:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_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:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_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:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_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:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_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:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_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:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — |
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:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — |
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:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_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:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_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:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_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:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_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:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_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:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_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:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_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:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_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:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_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:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_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:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_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:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_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:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_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:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — |
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:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_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:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_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:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_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:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_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:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_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:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — |
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:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_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:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_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:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — |
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:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_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:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_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:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_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:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_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:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_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:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — |
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:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — |
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:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — |
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:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_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:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_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:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_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:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_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:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_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:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_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:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_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:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_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:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — |
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:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — |
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:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_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:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_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:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_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:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_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:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_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:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_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:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_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:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_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:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_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:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_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:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — |
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:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_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:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_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:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_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:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_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:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_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:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_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:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_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:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — |
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:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — |
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:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_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:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_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:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_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:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_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:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_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:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_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:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — |
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:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_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:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_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:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_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:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_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:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_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:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_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:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_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:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_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:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_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:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_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:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_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:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_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:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_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:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_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:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_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:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_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:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_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:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — |
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:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — |
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:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_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:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — |
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:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_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:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_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:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_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:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_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:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — |
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:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_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:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_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:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_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:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — |
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:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_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:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_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:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_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:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_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:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_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:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_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:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_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:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_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:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_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:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_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:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_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:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_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:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_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:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_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:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_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:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_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:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_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:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — |
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:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_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:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — |
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:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_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:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_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:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — |
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:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_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:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_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:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_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:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_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:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_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:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_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:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_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:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_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:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_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:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_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:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_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:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_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:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_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:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — |
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:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_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-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_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@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_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:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_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:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_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:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_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:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_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:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_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:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_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:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_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:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_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:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_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:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_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:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_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:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_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:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_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:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_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:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — |
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:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_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:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_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:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_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:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_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:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — |
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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_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:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_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:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_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:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_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:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — |
Workaround
|
A flaw was found in the cmd/compile package in the Go standard library. A no-op interface conversion prevented the compiler from correctly identifying non-overlapping memory moves. As a result, the compiler allows unsafe memory move operations to occur at runtime, potentially causing data corruption, memory corruption or unexpected application behavior.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_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:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_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:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_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:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_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:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_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:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_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:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_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:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_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:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_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:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_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:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_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:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_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:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_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:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_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:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_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:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — |
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:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_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:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_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:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_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:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_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:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_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:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_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:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_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:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_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:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_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:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_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:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_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:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_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:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_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:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_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:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_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:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_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:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_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:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_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:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_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:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_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:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — |
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:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_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:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_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:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_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:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_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:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_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:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — |
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:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_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:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_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:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_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:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_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:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_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:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — |
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:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — |
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:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_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:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_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:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_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@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_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@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — |
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:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — |
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:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — |
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:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — |
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:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — |
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:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_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:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_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:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_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:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_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:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_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:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_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:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_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:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_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:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_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:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_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:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_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:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_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:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_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:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_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:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_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:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_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:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_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:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_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:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_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:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_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:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_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:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_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:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_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:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_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:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_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:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_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:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_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:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — |
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:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_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:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_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:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_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:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_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:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_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:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_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:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_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:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_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:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_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:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_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:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_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:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_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:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_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:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_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:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_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:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_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:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_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:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_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:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_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:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_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:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_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:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_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:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_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:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_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:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_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:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_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:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_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:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_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:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — |
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:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_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:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_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:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_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:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_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:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_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:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_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:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_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:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_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:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_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:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_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:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_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:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_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:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_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:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_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:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_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:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_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:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_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:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_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:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_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:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_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:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — |
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:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_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:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_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:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_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:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — |
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:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — |
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:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_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:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_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:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_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:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_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:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_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:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_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:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_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:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_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:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_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:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_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:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_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:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_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:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_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:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_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:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_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:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_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:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_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:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_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:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_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:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — |
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:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — |
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:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_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:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_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:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_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:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_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:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_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:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_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:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_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:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_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:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_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:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_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:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_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:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_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:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_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:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — |
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:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_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:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_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:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_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:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_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:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_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:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — |
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:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_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:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_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:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — |
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:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_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:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_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:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_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:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_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:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_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:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — |
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:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — |
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:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — |
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:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_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:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_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:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_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:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_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:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_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:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_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:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_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:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_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:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — |
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:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — |
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:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_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:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_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:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_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:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_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:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_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:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_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:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_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:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_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:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_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:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_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:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — |
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:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_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:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_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:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_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:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_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:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_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:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_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:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_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:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — |
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:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — |
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:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_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:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_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:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_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:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_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:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_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:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_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:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — |
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:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_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:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_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:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_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:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_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:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_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:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_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:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_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:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_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:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_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:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_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:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_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:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_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:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_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:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_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:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_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:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_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:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_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:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — |
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:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — |
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:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_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:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — |
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:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_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:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_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:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_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:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_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:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — |
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:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_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:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_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:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_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:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — |
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:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_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:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_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:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_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:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_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:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_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:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_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:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_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:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_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:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_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:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_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:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_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:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_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:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_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:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_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:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_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:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_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:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_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:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — |
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:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_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:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — |
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:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_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:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_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:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — |
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:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_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:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_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:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_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:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_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:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_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:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_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:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_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:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_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:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_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:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_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:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_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:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_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:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_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:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — |
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:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_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-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_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@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_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:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_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:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_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:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_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:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_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:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_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:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_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:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_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:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_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:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_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:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_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:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_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:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_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:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_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:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_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:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — |
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:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_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:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_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:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_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:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_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:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — |
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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_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:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_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:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_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:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_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:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — |
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-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x | — |
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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_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@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64 | — |
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:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64 | — |
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:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_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:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64 | — |
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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.43 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.43. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21655\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:21657",
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27143",
"url": "https://access.redhat.com/security/cve/CVE-2026-27143"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27144",
"url": "https://access.redhat.com/security/cve/CVE-2026-27144"
},
{
"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/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_21657.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.43 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:06+00:00",
"generator": {
"date": "2026-06-29T04:50:06+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21657",
"initial_release_date": "2026-06-03T13:57:27+00:00",
"revision_history": [
{
"date": "2026-06-03T13:57:27+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T13:59:07+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:06+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:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779785029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779783306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779780313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779778879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ad26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779779659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779783654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779787304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ab5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779787317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aafffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779782866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779782622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ad98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779860114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779784577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779786068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aacaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779780493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Af3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779787854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779783064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Af5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779787474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779781222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ab3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779781289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779781299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ad14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779780257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Af27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779889982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779783446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aa463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779787613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779780662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779785000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ae00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779787823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779787129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779780674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ada51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779804441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779777897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779777985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Ae9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779777820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ae5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779784029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779781229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779783744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Af20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779786541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779874891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779787632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779785509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779785533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1778256287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779787719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Abfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779780952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779778738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779780731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779875193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779783956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779788006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779788049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779787959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ada0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779787378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ab569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779786458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ab54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779783272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779788300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Aa2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779780763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ac6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779787191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779778945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1778879426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779787425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779787449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779782716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779787048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779782011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779778918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779779017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779778894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779778955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Addcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779778926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ae461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779778988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779778973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779778938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Aa25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779257774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779778937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Af178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779787971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779778898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779787251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ab074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779795067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779786507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779787392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779804386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779786021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Adf43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779781266"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779781173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ab0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779785958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Aab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779787692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779787660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779873946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ae59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779782449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ac47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779781920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779787880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779780280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779786975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779787755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ad060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779787694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779778919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779781142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779782692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Af59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779787164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779781031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779781940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ab1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779787336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779787477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ac6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779787713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ae18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779787600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779784982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aadf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779787630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779786583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Acf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779780578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Afd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779890000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779889988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779785143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779778465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Acd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779779851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ac16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779780611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779781122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Af59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779780775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Ad88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779779902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Af47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779780440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779780418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779786992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779779787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779778900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779786900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Af3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779782389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779787561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779849746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1779846267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779849795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779786555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779787006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779780483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779779058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1779781200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aeac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Ae2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779778958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Acb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779778871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779780811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779786461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779846066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779333813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779787214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779787252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aa164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779782423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779781840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779784020"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779786474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ae070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779787165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ac70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779794717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Adc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1779778911"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1779778885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Acc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779787498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779804423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ab9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779787506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Aa999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779782284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779780904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779784217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Add6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779785459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ae43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779787747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779780954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779781097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779780749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ae0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779779596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779786977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779860157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Aefb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1779778916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Aefb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1779778916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1779778894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1779778894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1779778977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Accfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1779778935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779788053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779787558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ab11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779787674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779784201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ae1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779787158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779787656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779787641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1779778925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Ac1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1779778933"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779785029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aedbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779783306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Af33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779780313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779778879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ad71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779779659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779783654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779787304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779787317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779782866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779782622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779860114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779784577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779786068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aeff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779780493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779787854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ab1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779783064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779787474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ac9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779780257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Af1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Aa883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779889982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779783446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779787613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Aefa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779780662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Afa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779785000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779787823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779787129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779780674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779804441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ab555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779777897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779777985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Ab45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779777820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779784029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Abbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779781229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ac02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779783744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779786541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779874891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779787632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779785509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779785533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Aa99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1778256287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779787719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779780952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779778738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779780731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ab0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779875193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779783956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779788006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779788049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Aa8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779787959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Acff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779787378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Af9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779786458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779783272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779788300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779780763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ad59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779787191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779778945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Adcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1778879426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779787425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779787449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Afa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779782716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aa42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779787048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779782011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779778918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779779017"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779778894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779778955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Af0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779778926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779778988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779778973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779778938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Aae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779257774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779778937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779787971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779778898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779787251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Aac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779795067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ace214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779786507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779787392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779804386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779786021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779781266"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779781173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Add1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779785958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779787692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aaea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779787660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779873946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ade36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779782449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Acad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779781920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779787880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779780280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779786975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779787755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779787694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779778919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779781142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Afceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779782692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779787164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779781031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779781940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aeffec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779787336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779787477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Adcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779787713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ace500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779787600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779784982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779787630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779786583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779780578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779890000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ad90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779889988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779785143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ab7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779778465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779779851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779780611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ac9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779781122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779780775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779778900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Afa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779786900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Aaccfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779782389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aa77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779787561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779849746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1779846267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779849795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ac20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779786555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Aa4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779787006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ad353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779780483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779779058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1779781200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ac4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779778958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779778871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779780811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779786461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779846066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Abbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779333813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779787214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Abf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779787252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779782423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779781840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779786474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ae863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779787165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779794717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ab120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779787498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779784020"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Aa83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779804423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779787506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ad08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779782284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Afbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779780904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779784217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779785459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779787747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Abe09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779786977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779860157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779788053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ae337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779787558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Adc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779787674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779784201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779787158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779787656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Adad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779787641"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779785029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779783306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ac5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779779659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779783654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779787304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ad7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779787317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779782866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ac8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779782622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779860114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Abafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779784577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Abafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779786068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779780493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aa775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779787854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779783064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Aee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779787474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779780257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779889982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ab2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779783446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779787613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Aca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779780662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779785000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Afb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779787823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779787129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779780674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Add2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779804441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779784029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ae3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779781229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779783744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779780731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aeae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779786541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779874891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ade118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779787632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779785509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779785533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1778256287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ac89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779787719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779780952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Af98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779778738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779875193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779783956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779788006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779788049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779787959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779787378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ad7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779786458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779783272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Aa22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779788300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ae220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779780763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779787191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779778945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1778879426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779787425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779787449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779782716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779787048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779782011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ab515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779787971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aaf061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779787251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779795067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779786507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Aeb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779787392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779804386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779786021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Acc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779781266"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779781173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ab707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779785958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779787692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779787660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ae6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779873946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ae256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779782449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Adbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779781920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779787880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779780280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779786975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ad4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779787755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779787694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779778919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779781142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779782692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ae86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779787164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779781031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779781940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779787336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779787477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779787713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779787600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779784982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Abf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779787630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ac9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779786583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779780578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779890000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Accac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779889988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779785143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779778465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779779902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779780440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Abf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779780418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ae282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779786992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779779787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779786900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ae4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779782389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779787561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779849746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Afbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1779846267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ae9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779849795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779786555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779787006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779780483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779779058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1779781200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779786461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Af8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779846066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779333813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779787214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779787252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779782423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Af4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779781840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779786474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779787165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779794717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779787498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779784020"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779804423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779787506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Aee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779782284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779780904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aa824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779784217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Ace40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779785459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779787747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779786977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aa4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Abf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779860157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779788053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779787558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779787674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779784201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Aafb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779787158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779787656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779787641"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779785029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779783306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779779659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779783654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779787304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779787317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ad19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779782866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Afd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779782622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Af4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779860114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779784577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ae094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779786068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779780493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779787854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Abd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779783064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Aa9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779787474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Ad31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779781222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779781289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Aa51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779781299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779780257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Ac92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1779889982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779783446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779787613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779780662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ab9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779785000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779787823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779787129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779780674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aa25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779804441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779784029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779781229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779783744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779786541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779874891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ac3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779787632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Aa7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779785509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779785533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1778256287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779787719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779780952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779778738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ab8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779780731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Abcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779875193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779783956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779788006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779788049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ab81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779787959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ada43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779787378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Abffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779786458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779783272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779788300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ab2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779780763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Af8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Aa896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779787191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Abed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779778945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1778879426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779787425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Abecb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779787449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Aa0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779782716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779787048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779782011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779787971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779787251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Aa90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779795067"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779786507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ab56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779787392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779804386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779786021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Af6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779781266"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Af0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779781173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779785958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779787692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Af5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779787660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Acd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779873946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779782449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aa0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779781920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779787880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ab89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779780280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779786975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779787755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ac504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779787694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779778919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779781142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779782692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779787164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aadf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779781031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779781940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779787336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779787477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Add1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779787713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ad84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779787600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779784982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779787630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aa4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779786583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779780578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779890000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aa9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779889988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779785143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Af716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779778465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779779851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779780611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Aa6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779781122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779780775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779786992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779786900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Af87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779782389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779787561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779849746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Ace61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1779846267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779849795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Acad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779786555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Aa1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779787006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ab7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779780483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Afb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779779058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ab04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1779781200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ae7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779780811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779786461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779846066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Ac02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779333813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Afa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779787214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ae46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779787252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779782423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779781840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779786474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779787165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ab11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779794717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779787498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Af72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779784020"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779804423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779787506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779782284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779780904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aa878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779784217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aa595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Aed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779785459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ac9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779787747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779780954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Ac68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779781097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779780749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ab633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779779596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779786977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Add0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779860157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aa5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779788053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Afd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779787558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779787674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779784201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779787158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779787656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779787641"
}
}
}
],
"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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_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:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"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:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_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:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_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:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_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:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_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:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_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:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_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:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_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:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_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-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_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:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_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:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_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:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_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:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_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:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_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:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_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:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_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:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_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:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_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:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_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:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_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:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_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:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_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:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_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:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_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:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_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:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_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:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_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:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_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:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_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:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_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:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_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:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"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:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_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:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"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:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_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:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_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:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_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:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_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:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_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:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_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:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_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:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_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:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_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:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"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:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_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:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_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:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_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:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"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:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_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:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"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:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_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:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_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:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_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:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_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:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_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:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_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:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_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:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_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:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_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:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_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:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_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:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_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-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_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:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_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:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_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:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_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:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_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:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_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:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_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:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_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:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_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:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_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:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_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:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_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:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_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:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_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:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_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:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"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:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_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:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_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:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_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:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_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:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_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:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_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:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_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:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"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:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_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:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_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:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_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:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"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:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_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:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_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:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_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:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_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:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_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:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"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:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_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:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_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:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_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:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_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:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_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:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_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:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_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:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_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:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_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:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_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:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_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:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_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:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_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:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_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:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_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:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_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:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_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:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_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-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_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:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_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:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_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:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_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:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_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:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_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:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_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:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_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:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_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:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_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:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_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:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_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:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_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:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_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:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_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:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_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:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_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:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_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:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_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:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_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:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_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:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_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:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_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:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_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:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_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:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_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-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_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:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_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:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_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:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_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:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_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:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_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:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_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:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_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-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_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:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_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:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_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:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_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:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_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:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_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-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_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:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_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:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_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:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_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:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_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:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_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:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_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:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_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-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_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:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_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:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_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:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_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:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_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:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_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:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_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:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_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:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_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:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_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:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_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@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_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:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_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-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_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:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_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:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_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:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_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:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_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:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_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:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_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:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_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:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_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:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_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:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_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:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_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-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_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:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_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-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_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:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_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:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_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:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_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:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_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:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_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@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_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:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_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@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_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:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_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-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_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:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_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-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_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:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_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-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_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:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_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-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_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:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_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-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_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:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_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:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_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:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_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:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_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:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_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:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_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:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_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:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_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:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_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:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_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:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_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:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_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:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_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:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_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:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_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:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_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:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_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:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_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:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_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:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_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:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_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:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_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:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_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-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_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:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_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:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_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:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_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:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_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:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_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:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_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:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_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-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_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:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_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:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_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:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_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:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_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:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_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:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_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:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_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-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_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:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_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:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_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:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_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-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_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:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_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-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_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:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_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:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_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:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_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:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_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:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_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:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_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:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_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:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_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:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_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:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_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:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_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:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_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:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_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:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_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:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_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:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_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:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_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:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_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:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_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:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_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:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_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:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_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:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_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-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_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:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_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:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_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:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_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:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_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:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_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-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_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:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_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:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_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:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_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:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_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:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_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:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_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:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_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:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_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:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_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:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_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:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_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:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_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:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_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:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_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:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_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:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_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:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_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@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_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:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_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:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_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:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_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:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_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:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_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:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_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:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_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:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_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:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_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:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_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:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_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-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_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:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_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-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_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:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_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-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_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:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_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:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_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:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_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:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_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:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_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:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_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:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_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:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_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:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_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:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_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:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_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:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_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:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_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:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_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:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_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-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_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:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_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:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_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:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_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:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_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:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_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-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_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:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_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:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_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:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_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-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_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:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_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:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_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:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_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:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_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:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_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:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_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:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_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:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_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:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_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:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_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:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_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:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_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:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_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:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_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:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_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:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_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:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_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:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_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:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_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:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_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:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_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:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_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:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_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-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_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:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_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:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_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:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_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:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_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:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_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:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_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:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_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:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_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:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_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:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_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:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_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:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_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:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_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:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_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:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_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:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_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:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_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:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_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:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_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-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_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:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_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-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_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:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_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:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_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:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_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:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_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:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_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:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_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:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_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:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_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:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_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:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_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:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_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-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_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:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_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:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_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:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_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:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_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:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_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:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_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:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_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:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_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:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_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:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_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:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_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:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_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:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_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:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_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:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_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:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_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:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_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:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_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:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_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:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_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:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_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:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_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:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_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-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_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:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_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:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_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:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_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:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_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:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_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:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_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:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_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:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_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:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_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:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_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:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_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-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_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:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_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:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_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:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_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:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_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:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_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:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_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:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_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:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_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:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_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:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_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:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_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-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_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:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_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:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_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:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_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:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_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:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_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:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_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:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_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:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_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:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_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-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_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:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_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-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_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:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_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:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_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:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_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:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_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:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_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:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_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:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_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:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_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:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_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:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_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:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_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-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_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:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_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:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_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:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_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-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_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:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_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:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_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:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_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:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_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:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_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:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_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:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_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:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_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:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_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:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_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:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_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:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_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:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_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:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_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:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_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:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_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:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_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:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_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:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_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:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_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:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_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:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_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:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_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:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_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:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_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:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_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:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_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:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_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:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_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-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_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:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_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:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_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:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_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:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_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:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_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-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_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:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_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:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_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:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_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:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_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:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_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:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_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:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_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-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_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:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_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:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_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:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_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:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_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:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_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:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_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:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_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:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_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:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_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:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_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:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_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-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_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:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_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:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_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:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_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:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_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:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_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:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_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:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_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:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_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:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_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-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_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:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_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:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_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:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_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-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_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:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_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-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_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:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_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:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_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:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_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:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_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:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_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:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_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:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_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-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_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:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_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:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_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-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_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:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_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:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_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:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_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:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_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:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_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:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_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:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_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:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_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-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_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:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_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:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_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:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_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:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_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:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_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:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_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:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_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:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_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:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_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:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_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:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_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:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_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:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_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-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_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:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_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:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_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:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_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:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_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:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_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:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_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:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_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:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_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:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_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:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_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:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_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-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_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:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_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:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_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:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_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:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_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:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_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:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_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:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_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:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_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:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_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-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_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:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_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:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_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:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_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-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_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:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_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:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_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:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_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:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_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:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_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-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_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:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_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:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_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:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_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:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_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:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_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-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_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:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_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:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_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:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_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-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_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:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_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:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_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:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_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:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_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:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_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:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_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:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_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:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_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:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_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:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_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:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_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:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_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:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_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-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_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:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_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:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_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:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_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-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_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:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_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:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_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:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_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:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_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:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_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:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_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:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_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:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_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:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_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:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_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:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_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:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_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:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_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:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_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:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_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:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_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-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_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:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_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-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_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:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_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-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_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:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_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:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_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:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_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:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_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:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_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:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_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:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_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:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_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:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_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:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_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:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_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:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_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:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_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:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_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:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_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:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_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:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_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-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_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:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_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:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_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:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_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:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_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:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_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:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_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:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_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-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_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:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_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:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_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:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_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:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_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:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_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:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_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:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_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-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_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:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_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:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_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:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_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:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_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:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_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:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_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:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_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-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_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:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_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:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_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:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_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-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_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:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_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:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_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:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_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:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_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:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_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-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_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:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_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:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_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:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_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:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_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:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_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:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_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:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_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:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_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:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_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-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_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:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_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:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_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:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_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:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_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:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_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:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_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:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_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:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_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:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_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:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_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:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_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-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_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:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_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:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_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:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_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:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_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:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_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-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_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:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_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:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_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:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_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:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_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:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_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-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_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:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_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-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_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:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_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:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_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:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_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:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_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:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_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:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_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:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_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:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_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:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_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-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_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:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_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:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_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:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_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:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_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:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_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-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_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:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_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:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_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:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_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:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_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:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_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:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_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:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_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:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_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:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_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:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_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:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_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:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_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:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_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-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_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:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_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-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_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:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_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:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_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:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_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-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_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:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_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:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_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:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_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:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_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:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_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:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_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:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_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:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_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:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_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:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_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:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_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:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_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:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_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-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_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:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_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:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_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:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_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:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_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:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_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:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_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:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_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:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_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:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_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:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_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:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_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:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_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:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_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:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_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:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_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-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_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:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_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-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_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:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_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:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_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:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_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:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_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:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_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:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_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:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_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:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_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:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_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:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_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:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_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:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_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:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_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-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_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:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_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:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_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:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_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:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_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:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_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-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_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:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_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:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_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:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_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:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_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:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_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:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_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:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_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:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_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:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_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:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_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:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_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-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_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:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_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:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_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:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_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:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_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:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_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:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_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:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_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-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_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:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_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:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_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:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_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:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_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:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_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:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_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:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_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:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_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:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_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:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_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:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_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-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_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:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_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:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_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:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_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:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_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:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_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:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_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:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_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:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_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:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_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:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_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:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_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:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_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:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_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:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_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:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_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:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_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:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_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-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_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:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_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:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_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:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_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:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_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:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_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:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_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:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_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:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_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:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_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:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_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:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_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:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_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:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_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:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_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:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_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:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_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:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_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-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_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:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_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-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_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:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_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:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_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:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_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-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_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:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_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:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_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:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_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-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_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:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_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:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_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:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_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:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_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:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_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-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_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:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_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:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_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:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_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:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_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:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_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:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_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:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_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-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_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:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_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:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_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:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_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:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_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:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_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-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_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:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_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:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_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:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_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:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_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:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_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:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_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:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_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-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_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:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_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:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_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:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_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-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_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:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_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:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_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:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_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:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_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:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_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:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_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:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_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:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_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:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_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:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_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:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_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:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_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:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_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:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_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:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_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:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_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:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_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:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_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:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_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:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_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:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_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:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_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:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_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:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_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:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_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-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_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:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_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-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_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:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_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-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_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:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_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:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_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:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_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:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_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:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_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-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_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:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_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-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_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:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_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-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_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:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_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:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_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:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_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:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_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:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_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-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_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:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_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:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_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:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_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:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_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:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_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:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_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:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_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:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_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:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_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:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_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:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_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:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_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:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_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:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_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:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_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:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_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:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_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:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_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:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_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:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_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:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_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:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_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:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_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:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_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:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_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:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_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:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_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:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_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:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_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:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_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:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_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:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_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:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_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-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_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:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_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:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_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:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_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-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_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:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_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:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_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:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_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:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_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:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_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-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_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:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_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:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_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:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_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:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_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:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_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:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_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:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_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-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_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:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_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:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_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:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_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:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_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:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_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:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_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:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_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:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_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:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_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:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_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:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_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:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_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:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_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:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_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:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_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:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_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:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_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-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_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:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_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:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_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:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_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:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_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:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_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:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_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:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_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:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_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:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_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:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_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:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_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:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_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:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_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:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_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:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_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:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_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:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_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:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_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:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_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:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_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:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_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:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_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:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_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:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_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:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_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-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_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:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_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:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_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:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_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:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_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:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_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:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_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:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_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-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_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:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_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-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_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:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_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-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_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:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_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@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_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:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_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:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_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:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_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:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_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:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_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:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_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:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_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:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_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:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_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-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_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:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_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:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_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:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_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:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_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:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_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:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_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:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_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:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_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:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_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:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_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:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_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:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_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:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_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:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_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:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_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-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_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:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_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:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_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:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_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-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_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:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_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:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_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:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_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:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_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:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_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-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_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:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_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:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_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:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_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:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_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:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_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-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_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:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_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:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_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:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_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:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_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:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_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-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_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:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_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:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_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:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_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-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_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:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_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-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_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:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_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:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_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:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_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:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_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:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_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:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_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:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_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:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_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:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_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:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_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:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_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:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_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:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_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:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_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:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_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-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_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:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_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:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_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:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_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:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_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:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_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:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_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:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_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-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_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:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_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:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_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:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_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:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_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:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_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:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_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:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_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:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_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:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_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:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_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:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_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:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_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:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_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-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_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:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_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:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_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:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_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:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_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:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_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-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_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:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_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:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_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:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_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-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_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:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_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:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_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:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_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:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_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:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_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-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_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:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_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:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_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:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_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:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_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:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_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:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_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:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_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:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_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-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_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:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_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:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_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:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_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:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_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:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_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:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_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:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_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:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_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:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_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:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_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:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_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-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"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 Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27143",
"cwe": {
"id": "CWE-733",
"name": "Compiler Optimization Removal or Modification of Security-critical Code"
},
"discovery_date": "2026-04-08T02:01:29.491546+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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456342"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cmd/compile package in the Go standard library. The compiler fails to correctly check for integer overflow or underflow in arithmetic operations involving loop induction variables. As a result, the compiler allows invalid memory indexing to occur at runtime, potentially leading to memory corruption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: cmd/compile: possible memory corruption after bound check elimination",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is only exploitable in applications that contain a loop structure that relies on an induction variable. An induction variable is a variable that gets modified, usually incremented or decremented, by a predictable amount on each iteration. Inside the loop, the induction variable must be directly used as the index to access or modify elements within an array or a slice. Additionally, an attacker must be able to cause an integer overflow or underflow in the induction variable to trigger this issue. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27143"
},
{
"category": "external",
"summary": "RHBZ#2456342",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456342"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27143",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27143"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27143",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27143"
},
{
"category": "external",
"summary": "https://go.dev/cl/763765",
"url": "https://go.dev/cl/763765"
},
{
"category": "external",
"summary": "https://go.dev/issue/78333",
"url": "https://go.dev/issue/78333"
},
{
"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-4868",
"url": "https://pkg.go.dev/vuln/GO-2026-4868"
}
],
"release_date": "2026-04-08T01:06:57.168000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, strictly sanitize and enforce bounds checking on any untrusted user input that influences loop counters, iteration limits, or memory indices. If there is no integer overflow or underflow, the out-of-bounds access cannot occur.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: cmd/compile: possible memory corruption after bound check elimination"
},
{
"cve": "CVE-2026-27144",
"cwe": {
"id": "CWE-440",
"name": "Expected Behavior Violation"
},
"discovery_date": "2026-04-08T02:01:22.896153+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:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456340"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cmd/compile package in the Go standard library. A no-op interface conversion prevented the compiler from correctly identifying non-overlapping memory moves. As a result, the compiler allows unsafe memory move operations to occur at runtime, potentially causing data corruption, memory corruption or unexpected application behavior.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: cmd/compile: no-op interface conversion bypasses overlap checking",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable in applications that contain a memory move or copy operation that is subject to a no-op (no-operation) interface conversion. Furthermore, the source and destination memory addresses involved in the move or copy must overlap and an attacker must be able to supply an input that triggers this specific operation. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27144"
},
{
"category": "external",
"summary": "RHBZ#2456340",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456340"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27144",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27144"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27144",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27144"
},
{
"category": "external",
"summary": "https://go.dev/cl/763764",
"url": "https://go.dev/cl/763764"
},
{
"category": "external",
"summary": "https://go.dev/issue/78371",
"url": "https://go.dev/issue/78371"
},
{
"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-4867",
"url": "https://pkg.go.dev/vuln/GO-2026-4867"
}
],
"release_date": "2026-04-08T01:06:56.908000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"category": "workaround",
"details": "To mitigate this issue, review code that performs memory copies or struct assignments. If data is being passed through an interface (such as \u0027any\u0027 or \u0027interface{}\u0027) just before a move operation, refactor the code to use concrete types or explicit pointers instead.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: cmd/compile: no-op interface conversion bypasses overlap checking"
},
{
"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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
}
],
"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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:57:27+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:27eafee2d15ebe7d66cf14aeefbb79f91512669ecee1facf3ee5f06019dca651\n\n (For s390x architecture)\n The image digest is sha256:928917977895d721b3355e93031ae9da26e0e34f4f4fa1aee5723a22ab98432d\n\n (For ppc64le architecture)\n The image digest is sha256:12d6af49e535ddf1a786f40c18e2bc195ca21602cfdd37552fcdb762c6d00922\n\n (For aarch64 architecture)\n The image digest is sha256:d84590b666012baf94ad1dd3216779f5e851da6571702b2440b9071a5d1e9f55\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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21657"
},
{
"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:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:00dbbd309cec902c4d16c80fc0ca3e903a43aefd0e0e9455169682fef52153c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6f3b29cb3f4b1befcf3dc0976cc1f634e411886b964e5d1743bbd265fa946c99_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:ac5e790d66350db62fe054ce1c1091d10a35bad5fd81327fea4d80fa91fe80cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:edbe4fdb0bdced2c9795b9dd20dc59f4a8b6fffef33a0a9a852cf69ab5381e3b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6430412d4963f6a614844ec54f60130ba5520a69a07cfc4eb208f76c0ea36c2a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c5824d23f4f118885cce18cbcf6132209956abd2f38ba8cd48d4de0fe5105ab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d26fd89dbb2bdf450f30f616798203a69b92f20967d3034e1f9056079044d898_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d71fa80be1a2b6912d8541c560b54d64d09eee17edec5e310956b841feea2d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1635a173f7ab23d91e3150b2b27281ba9d13cbc7b80375f2d21790ac439ad9bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1a4e1a2cc959755263ae9adae81b0877af80196f01de84a4659ae0e465afa30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b515dda885892f12e14e1a442ccf4fe2d9386d59f8efbd31d3a1bacff3be563d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:f178bbb0a5e86fe869f8f1ae858c407d249a54c3fed6b90c41c84dab108361f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:48f715b8b704774e56ded9b4be2fb8c5c7791dd946f5bcf4c409f04884cd5c27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:594a1fac3cea32c3c92b010dbac4cf20ac0c94932288cb12b414bf4e52f240df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:95edf7ac3e36d57faf08b5bb634d00ce9b87b10b4132a130a301e2cdb41e2182_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:96e98a75060c99a8e3e97550647a3315560789da726aace89a4b109b2b3185a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:131006cf6201069a826237fefcdafda4041dcf5c003fc8588e81cd9ebcda82af_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7c6209994b381d6f5b189d7b5b0a74f3478f74cefce0777b67e3516029d390d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a775ad8f6c588d41b715fc7ebd8583c51c12afddc91c9fcbc0d205dd19727c58_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f3377ea4ec953d264615bf763fed6deff6bd23a8ea68f345146172afbcda3947_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:442bad27a52a10688cdc7d57c3ebe79266e61e171bb52bf3b867b954e3ac9935_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5c74fb391430a0e96e24412b2936e66d117f1314320989158f6ede73d8433d70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:79bb57d9bf99cfd31d79cdd4aa3d618178f83257dbea98bc004af933b97f2580_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b2dc6315b37a8d8665d2fb3797ae49df279f88ad2650799bacb79ab685b388eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1123bd5d873f32ff23ee39f8a6f3f74d29ba7b89ad231005c1190666e257f194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8c232660842bb14dc43a5cfebf4d8056c575f49150b05354455b39c42c157f23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a463ee137cfdac297a6873105bf80f4b37c4e7b5194826f1acee218e261bc9fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ff0169b8b8b2cd42fc9e1016be984ed673d580b4bad4d005ecb471cfbb2cbda1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0ab2ffa80eee4b67bd19b29ca7f3de8c087b99efab968ce752ed7384850733fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b7d4468824d2cd486168c595c58c3a1be4f5aefcc9de0989e7ce6d05ab9f5d38_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e0aae44c4e13d9096828ffea6270c5af12f9bded6e523ea74b990e36e74529dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:f716947ac983eef392b2b41e2f41ce37a8c2ccf9ac9bfe47f102644eb1af00b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:accfe4cab22206b88a4d973cd47249916225a7c1082177f06db356a0214b8e43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:e4c5fa6b0d448c13d956d64ac9c8338905ead1148145194d47b1af5037c665d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f3da0d92c7d05399d7f4b562980b888bd59671811a221fbe40f32d9576cec231_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:f87e1be2ebe7c8b03892c6a0aabb628efe3b7ede8a267f4218eaec986809af7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1071f2705bb9448be7bf659698b863ed105cd644a6a219040f4dc099376166c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:36707385edfee9830e254fc7d0e37d63decd6f65c108700405d490dde0622d1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:911f1f9f83d8b929d50d00704b3981ac4f0b2a6731a5f720dcb833f21fbefdfa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a77641138dfed45419c961407772270817002f1ad32d858291820a3487bdd882_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:71e2d912019ab7aa156ac88e2a0b6eb9c21ba4bb0c47574095ebb9d72f1b4c05_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c20b974b3755f98955b81a6bae1e9637f307fc97a0122f30072395eb9d617667_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cad463d832937eec9eb461b3a275cef830de4594eef141d4ef08ae9cee2fcab1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:ed6330af7aa6cc7ab1e7900ca8fe7df96434a8e8d15368650603898e17a0b238_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1ce98c41b83293ab908a5de34ca602dfa995de11784994573077cd171397b993_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:7840a20f675b0ba56a3e3b5489b5003c12d68a7390c100406a06e67e98b7e638_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:82c8238a08b7f4c8ebebd02ba168871891a74ad07cd5b8b11ec4fa8aa19ab51d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:fb0cc833deabceca38b14deaf2e3def02550c13116b6e689cacffa6a9f72f0aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:472bae033a84adade70459d45c9e818b3f5d69442239b566e46d0e6f463ffb37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ace51f4555de53166010fa0ac676e8273e325e3d719f08580efe42cfb06d2fa9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b11755bf45a65046d160b57e61f17d4fb8d17482e5f0a7c3aa5432115cef51b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c70f8c2f64cee04f5a8670efbdbe446ad11f2b3a6cec3c0ef5f59459a69437e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:278ca8b8601744f21132ce3d2e100d61dcd1c51686223ef5e5c28235b4e59b47_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4ddb9f9941826792d8ce594fba819dadab446bbf5b24da907174ccd971b45264_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6ec05f445658b006d37db08378c08cca99998068a4f2b8036978e8b84d958bbd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:bfcdbfda43df3c53b29979a8743ad663f9461c4e65a30d7a7e5fc7b920a6be14_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d3a56ed7461dc1bd6d800bc70653529b8fa19bbdce8e3413ef7df424928c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:6d7b55e461ff00ecb910f425ceafa6a2342874f185bded256cb7746d3062e5d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:78f861f434b2071e376738c31c1381902f1acd886c779e274ff6c772d618f160_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:be09758ee6ef3311cf2f5faae000a5fc1c6ca5476b456435db6348049019429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:3a1aebf26c12f98e4be4703f1480e37422964e5a4c6a429e1b92966729d854aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4066f5b399b24bacfb8a815307002d504f1e05a29c91851cc7abfa7e0837fa19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8a7f5db317a5af824dcd1f29dbef8b04d5832081c1a04751ee269f2985a3daae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:dcbb255f62741aa77a3c239fd04ea08c6aee59d8c9baee4e4fb0444e5b903cc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1b0b0244b4db88ff4b34964b443c8b9d68a99e76e087418ae1c0741c57936eb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1e0794008667beff9ed1a166768058c2b7a73be6161118df531b5239fe0a8be8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3463c3bae86062fde36bf5cc02b6374b234bf31561bf3564ae13f5ae6a5f7689_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:91fe713f03542aa42197c04b3fbb3dbb07b8b3dbacecb1b984404ef1ee25d2cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:084ad96851f36fff68a0fb80155063fa6008442e30aebf1cf372931181199b0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:1079fe7eaa288cb517a043354f06211aba2bbe0f1463db7f60fe97f8080c09c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:353c0fa6a91a7a35af3be9090f87ae19b747e1f7032e0ae45d4f5ca61ebe8e7d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:becb60fd34aecaf841d27846518aa60467dc1db1160484a35bc6ccedfaf462c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:585104f45fd5c6ff87e0c954b2364592eaa3ba47c7c7014514f840239cac1dea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:9395001e67bc7b32266194f95461785b983b5af8d50404de06a385d60b7f5ea2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a0916a3ca3818cc0868497cc8b74a6aac19054ef5bef0d5ee35d35e9af73360b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fa08fc9484f4740df2506f49ce5e8cec1bd329d814c590c4509745f8dc52841f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49a18081871369b35a9903678d61de95fe1fa0bd498a8d0a45f6dd679dbaef21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:7a9b28214dce00abf182ca035e4c94a0f9f3207ab8158e4e7f5974b539b81830_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a42b059238ec8161b3378c691703214327fac7ebb0f5ddc6e606f1a37496ccbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d23ab5a9ce504718b814497120c854a4eb8ba7ecc87804efd0beeb06c3f4b8de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:074f63887669dcaf6e4f94b834dce4b0afbe0fd70bae26ce89a7a93b870208e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0a84d33c98ddc51ce817bc4adc8cbe8127a5d0932745b8c3159a17a6de358db1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:260cb214e4a734a4e596f481a836c92a12e88ef3dc7a13000765d9e548d4e5c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:8f2ab768aaa4ceea5efb4e69eb23203a621c9ea170bf4a209be1729746f7e6f9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3dfe8485b76bab9840273b0bb9a499801686d10c19c3f2f560f553bf8df30223_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:88797c967afcca1691756818e664aca8dbb44488f61783dc3af5a5ef70292a21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:1b1a330595d5835eef2690cdea2cce2b20444aa779770e4c7d3ac3e9086fc654_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9951318e7799ae5e1ef9f2658e7cf21b85f20950b47d594e43b8a902de7905de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:411d1313e8d2a8319dc592cc9c66ccc5d38966b3f0412cc1433ebb002df72b26_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:5416ea251590b06e50d51f4219ee533b4a70e2942f28de7dd547cf27c682d3c5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:8655b4445c098d9a2c55fac946ee61c588c176173fe4efbc8582dc2fef39c87c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:923c6610b8ca01cda333d99b2fe74a4440fa0df6364aed816faf0d9aa4d69b71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ddcd2fd6e82315f36346a7590779f897fc99fb6d3fd692f2da4ac8c0dc73ca34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f0a8c8b26aec1f0908bd6610c58aaeaf536fbb1e042d090c2e5bc28a6c639aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:073118c9daec0c53fbf2563a0c9f583ef715c63340ee53e29e60511b082fedd9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e461978a5986325105f39a52e0292d61f395ae58e2d7992d5102ffbcca8e6ca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:35fbc4f7f726915dadf60da49da67990f735c634d0cb96bae2b71001cc16b840_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:8669866312dbc496ff4348eb1d6339f54b714ac888211852ab02af5241d20f1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:6cc1b6c0f652f5f141daec968a04cf999326e76de65b5484c663b6215d7dc62c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f27cb2d3f0ca0a9ac847ed9546b5d7a2cec6d4611d22d90d247c2bd3c02281a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:499fb73349e630e3993f724ed7669b8fbe33d6d69bf04d0b527cadbcc4d45b56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:506989ed63e29b07fee71b7bd3627d800b7ced04bc9804e7eb34f60044627763_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a25214e75d81ab542f00843a4d079b6107c04c944d8e9a7c7a663350f0727f5e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae3bb06330aff01e02ced08dae4a040bab313e27f16f239089dbe785dc3421a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:4b9ac79afca9ea59a64bcbf673c63f22cb025b1faf9aff7296301f6aecae5a28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:5b2edb81c163205e22c700d54083590b2d01e73bfc79918cd7be9829638b5343_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:640b682b4958bf800900b8ee4959d90acfedcf69320956006e85fa57353b7268_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f33c87ce6aa81c93bd636bf54bbc622e3ff20bdad2c3a8a7ab8f4bdba4c13d93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:03c71ace8a2f29033922c1c29a97f5d5306c16653a6f5e1fda1a93744a6e6872_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:6625a837dbd3d899e9029243ce8038e3a52bace5c5776766071fe1d1b8fcd950_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:03a90638ff7f356d7af917fe50d496d286c27fe7c5784f8acf0be553f27cfbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0fea254806d16d9b1b986deb025b48f99d31d9d43b9f9d397df314eec2ad8b84_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:716535d17a9dcda0a85af952d825895e6bfa4fe56fdbf92d73eea2ad25279aa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:af061dbb2511b30a324eb08e8aa3152a69b102da097131943be74957801f6ced_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5a4fb708c1e33f9c967df1191db05f5df6dbd819f9acaa762fee2fd8e83f5f35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a90d02c9d02bcefd64dfb70859abdb73fa903ddc0973b84b43e4c628a83a8dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:ac8dc9484473c5ae504856b63f71d765943f7157ca2f9eee8402460e370a6954_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b074c97fce2d6fb1b65cb73a823010b1c2177101a631d6feaa8fa12facf9fffc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:12948cc25d04e984f811aecc97753d339c94204246f80ca816e7a5f860848837_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27920fa1375f9c8a9ea83eb588a76d7ec80fddd476b4ff061f767a831b2c1a06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4bf6824681119dc10aa07e3c4e959766264d184e974119c1d4feed3c4e61576d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8dd8991c515f0419445bfffa8613773fb90e290b1aa3fd4b66a212bcba87ab77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:1b082988b8a59b4f70de4eaf1537f4d180a05dcea5a2eba5bfd32a6ad1717738_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:3118ab6a3b15e8492d1e2d85e97846c91f4460fb86b209657afe7da07dd1a29a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8ffa02b259e4c832a8dd075b61df222f5201fcbf4a2cdcf1b8a0df8feeec2f89_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ce214d5caed4134a10c0ff3a8f392919c40150961a413f753e947cf887a1a927_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3860d5299263c83661f572bb994ad6de8ea23c1255c54972b6d2a3e63cacc086_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:39d98748f7d40c8e0b991b13d1911a3e520d112fd0d03392f6110437af268de9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:57831000be3fa43f8fb3f6a74705ead29c49c572ac849a99d0e6911355a4b9db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:69f0ec8f0bee52adabc09b2b15404978f0e013968f1fe0148a93140bf7db83f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:20b2a0d4031d18f0155aa2f69f3f14d15f3008f5c13f7d62a55dcc05f56b4e96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:4ed22cde092a0984a0bfead44d312cbfcfbc145859f518e724e6b83524c4e64b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b56f01f40b8358865f836c864309e641bd70fedd4a8182e6d4abc1deb27b9998_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:eb25555b0b9c2ca7c4d071766c31688c88e2e29b61996f524c00b8952772bc55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:5609e371903466eff01109fabacc9cdb5cf94d3c827b942de016228236fe3720_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:71f868a55c1e7c49544021e70c2770bd06b6dbe306b74697acd6f8e5e0baeeaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9b02890879886e99bf6d8dbf298d7512d314ee5e90042af0e0830ff7cd026272_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b8e1f8689af2829137468d967540ffa9623dc66d0509b4c45e9a9e642d5e8226_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ffe5622dfbe5848befb3991f7cd062890012a9782397e823a94018f327e9b24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:422efb857a97afd56dfb794b68904bbdc5d2bb3e890f52ec5dabce5e004813c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:94bf4480620f878feae4f50d6f2f7b4f85c67ca5f6277ddd55b60d041d72ab30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:9949e4d403ef0ccb8728ec1becdaa8e3f34b7a9ddd95185cd64dbec06855e9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5c753bef32ee39f71498a1ef78604e125e93ff3b70d8a2c927348d0681575972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cc8cf7b3cc3ad352947abdeafd06362b6813fd2588093147d143c97c1fa4318e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:df43fc78fee5e3fda00fa21ced94281c393a53f9a303cb9c74df0a096a8f5c43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f6c0b008a8cc72d17d9d4f82312fd91a55b5895479db31b23bf72c0b85542bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3b088c3adad6f02dd6a9c0bf82b3e0f53e591e829449289594aea39f59339b17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3f602d6ad93c83e8774a52bc77cd727b96984c5fb009d43db0f4b5838cc00702_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:415b8a6a7310cc73160664d1719823217e598efc9ee575cbf8b4c6657e3a910c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f0e6d3851b0bf119c49587486111ab35448308bf97a8b7384b354bc6dce99100_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:963735127ba6e1152c24bcfc8467363eb3e8f778e7c903c1388ed35c17465ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b0d68e1f2753e797db386ece453c216ebaaa9510502b0e5431c2fb5a7b08e634_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b707c21a87b05c1a09a09e0a9edd7b03d9e510ae4c231ee06b667d5256542481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dd1f442326af2d5558ae9263833476f247c7fa672a9275dcf2150e2581168b73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1a1093a3f8b38306f4fc9cf02f2a91c07c1f0c577615d3a4106505333041a52c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:447976d0e9a056acf759fcab52ee0587bcb8a4eec2b0fbf374750575f1e0aa19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:57fedc75086b99b47fb415d6888ea63bb8b460a4067548b093cce15ff6977896_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6f7c19ff933c5962e317874c3c46707efa6817432e35f9f05d26ed5525f39eb9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20cb107054882593431c6269ea088ef0c219a090834454cd9321288334303639_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:85791499179ef139b62ec2e1f6c38c320099fd8be1868c6c865181e7c47287bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9e5d1226521b857d02528ab026334c26a2162b6ccd71605f0cd050fffd653ee8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ab5282556d644332814b6ef651d05e60a6b80efe43bbd4551fc27eebfbb11172_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7313a9a64630f7046809294454c9fc0ac68e66085040d8d7b55007928149775e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8b01afff95d5361a09d110613079252a1b83e35a8b46dd3960525b1887010616_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aea7cc97de2bef1d4093beb05eeebdf06c58687a85d98f831aa83d75df281f8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:f5b237cf467127312e844e36fefb0ba85b68a3f6e6b079d0d93cd42c55ee293a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:065e8d68a40f46f4b5775ca6f8e148588932c60edecaa6287761d76c7e955a88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:46bae3f2685e29baf379eb73cf5c5e698b6c90cdc79830d5a9b1b7db47d4852e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cd205a5aa057f4fe23df62975465a0632d38f5ee343ccd520a147df299ededcd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:e6eca124799b3f657422aab91d92812607414298dcc92a1bb99b37cacc0887eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5a5d4f27c3f9466f44cb1ff2b28ada86bbf29fea83771d38611a70c6f3d9c716_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:de36b5757ebe211c991caf6db87f57cac8148e28e2f35399ccdeb86e9cf45ddc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e256e818a7fffef13b13173bc420dac07e9ab70470fcd8e7e0bc1ff2c3532b89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e59580f4e452b9b4af039fa2ace9f8992857c7190a81476b38e7c1729cffa1b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a0898d60f4ee716b0a8dfd3e9bb651a335415962bf1d9757c09fde7e11babcf1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:c47114f1a297c7b66badb748d305aaae848d67a12f6b43dd4c0381f46814dfd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:cad4ed06165f528dbc4c7289a7e631adb1ab02ca6031c44fb7a2aed0c084005c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dbc5b897c26131bcc244a9adc89701f2aacee29d3d4e70c6f8e69e83759187fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:249b9d1010ed71bae03d79ef435d4b0224c605be86180419bd2a53bab50c22d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2742a915fcd9c4c7f2f3c8e608e21ecb095322022c942983207554d168d17880_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:2e0814df37c9a522058064fca058976baab2802c13876df79d33d289cf07bc56_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f914c53a95c8c6d7ac939985f93d16e6eec2f3aa945669da848f2224d1183166_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1be880406e47e97a04315d2d9fce7b5332ff8e44e586ad6e27b94087c7bb8eaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:42965f98b26b857b1388a19be2ad4b1427b5ff6f68fef39896806cbee5ec0805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6cb2ac6f7267896f8fc49280683532145db2e028aee7670f1f5bc5978cd8fd3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:81fbb2f3556cebefec0f68cccc5cf7157c1a5d0eb37154949c8ddfa9fef06fd8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:530e9bc27e67b99dcc3bead580e8022a77b45114b797d4d7280d5aa5490a6f08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:902dcc1c0ca586682ff81e7978480552e0a093f038a2f2730f20329da6a9bcb4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9a8b87754f6e714e8ede0126e0daad852c741d178e0fd872fd91dad70421c3a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b89218afba42c7d3c7d7fc5747e0e7085bf5fcb7c3dd853bd83286ebca2f4540_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1aafe7b7cd1fe6a982ac6a7aaf364c15933e678fa1925d5d79879d825ef74624_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5a90ecad5887b50eca69182cd54f374338b855bd5172b23cfc518b308f637d2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5d41da5c400283858914ed46cd408dc9b6e7f2bb98be1c96e8776382b3632f5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:606be1009d5b219176a865611422102425de257a6a85492eda61011732563aed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1f325a7cc400485fc832a35322349598fd4898a025bacbeea442212b7c4c136e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:45c9306f0fc782be05023706635070e55f030492b1187615bf024badf6f9bf3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b5c6492a56076c1b7986b69bf4013a47bc521d6b3a14e5e5f9ba2f21dfaa8337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d7223e4ab77ab5e18560ebea1e15d143a2f53abad128e4f59edfe4910d0f075e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:011191065faf49892208225284e8b74f2ba7ab224ce94167cd6892bc480b6e21_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2f2b1f473b6522e749095447e7307f2969cd0ec1f8b769c51db0e975b4fb1635_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8edc13b0e2a6a6e4c9af866085075c832c41d33ba2a367d167d5c7172fcac9a8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d4f4ed5227c6c6d3403a58fcc3a9964f3fe7bfe145ec55ac35b3550746d37aa3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:29f890332a3bf3a9209d983237a2749a020b9f0bc5b5a74bea30921dfff99f33_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ae5346ac75a7dc50c9895740d18fe5b896bfc8e0b51a88c19ed2ecdbb4b059de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c504cfbf29df4165488574ec452d8c70a85a0735f91cd2106d77ef358ee8b35c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d060c03dc4bfbf7d6c07c74a6d456acc03fa625f50cb620ecdb82653a4fdcb70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:104410e8ae316a747f9780d21d0bf619c878ce7ccca7808213e430212bb0bc71_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3617c598cab7874ff763385fd4abfbeaaa8815387cd90a8aff5736e8cb4ded89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4521e33005254891b2539d14c40bb2aaa405ad28ba71aaf95b99b31c640c0ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e2d2122163e8e7f9802e406118b405dbfc70047bec1f1ab296c6d1276aa21afe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41929eef3f69d60746c593907976c21634c35fc842bfbb2dc3aea555498b0d28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5c5642cab5e3454de9e9697a606cf693aeac5f72ec86753255306996fcdca596_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:8d537325a6ba9c346eead683b33aade1fb1dee9f247bed2a4efb94378cc3f0a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b0704e940c48981b67380d1be87f07b06c501d87bb196b4502967493307de0a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1acf951313912fb33130c838ffc65f3864dc1efa7d1cd70445970d87f8409430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:2c18ef8ee5b90bb0354a03d23412f514f54b8e9bd4485b25a7db34b336753469_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:392c94d7a5bc5304b1bb5fcca6ea34fac91d0e94e5cc72d375055b5cb9627cd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:fceb52dee4e290884a515f54ceb0b37e9abeb08ad76cc10a45a000e801d5c5cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:3a391cb9f9e7189312204695cbda664bbba7a4d275ff9c3d5d8554fd1cabd501_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7f820d4bbf1b8608f5b3fde5ed6c286807a739e3f439cbcbdce8af24364df657_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e86e3a572030a979954a7b4e8f14115d1719ad32fafc5f6ee838b0c242d7552a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f59e12266f3a61d8d3b63f06a765499fbf308fd44800bc9cc01d8912f2b2b36b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:00902970550aba651dc8dc70110851e416ec8cfceb1309070c329b6ecabc7b8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4912701dafd5b8b4b5e3ea26b3223c3a9cf41256462e5968bd17a6d241b2a270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8927ac35e5ed3badf5a45918b0302bf84f4a425a2bbceec8981d829750488e7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:adf1f11f59b514e104a56995214a5e2dac24aaf5d2b35aa187630f76df9677bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:57b90e3b92974d3db9244e99da517ffbfb64e35447d2fdfeb5bd395f65564805_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b3c74b7c229af72336f039361ae0fc0be0d713d980151afbe7633c634c30dd5c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ca7a6a55b3f739a486afd9c12043ac7343fed01190dc20b4383088ad39fc30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e69be16d325ff4152f5ae001077b87a655a601dbc8fd76c114e4f654c70152e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:27faf13cb9b783a18230d820c69c3436a5688f7d12342a7e25394c6b78eab012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4e88a93795f67a133c4192c0829632056e5083f6a4860f41ecd6edeaea2d8fd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:afffb208db9352e94c164eb5492130bebd408a1cf93c0c54231b93ca0813faea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d19ffda2fa9d36fa5d206246776d1bf7642e2b584da7d9d2cda20be3d360964a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2c24b1a4c05cb2865a2db42d9c4200020513c70d73fa4198f4936073b95578e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:86cc855a2244ccd5c571b23d8cd6ae8ad1fab0eaaf703f92288118f7e589a134_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:c8b4164e79afa7b4348a6a6fdc2f07b429ccc430b530188b11761383769a83d0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:fd4fe963612a8c3c08ba3104f44a1e25393a4dca1627585d6432c7b7b6185abb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:6cc45ce0ebcbc66c8a4e279ab2ecb0ee3215415fa31cdd8f46813f586957782b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8f65b671f0950e182ee4bd055e5e9f9aa5c08f705ecde1ae80e42893fcd82ab2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d98eebe3c1a5f854bcaef0a4767eb82bd546ff15207fca416abd201d06ae1e9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f4d25944c296174ab5deed78ff44a657c4641b6f08858a6bff77156851acc9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2b61953ed24106aae3fb0854911e0d98bb285da4697c7a78a1e9d785822a7301_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9fc59638adc14af34e883ba93553d0058de2d60c1b93ca51fa303eb06cd45a82_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:b1cdde7fa07f8684e886d4825762761de72fe3b5bfdd0f3be6d480697790525f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:effec175e8aa8358a67988d075acfc2dbfb4c04d0fe827729028dbd1959337ab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:1df680b2b0c68cf51d7b865e6c0692160695897756a963b5cb1b60b1ab1c2782_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:411b3068676e192ab2ff104604884fa3cae83602346009b78e4e1fa146d8f9d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69bd7ebd928827820961a50b5014371192b2912d10ac1be32605e48342c749c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:81786758e2f3bfe07fc063446bd6eeec8b197d8b0738cfe3af98ade368ee5d86_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7ce4f46c56d7977e5bccfc0682cf6dbeab2a7d5b9c78afb10dcd4a494dd4cb93_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c6f0647a249cc092868ade2ce1e336f5587d192cb92186890adf24cb360ee423_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dcf80d856c5cc4eee8a62b75ff88a589018115ab2603490226d5e866f58cd77a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dd1a5f6bab9d1a419bece7da7f1b9774ddfe8f890f8e816b3313d3dd5270106d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5ef50726eda33e7cd4e20a3d6a4a93db3be9038d6ae7cb037c30d1ae19137801_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:89119fc5066225872c12bf368defa318e696c77f83019bea480af39c5cfef9b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f24a47ff29eec3dfbad31a4132ee58fbd05b5fd69d9a6a0ea3a0002dcf749db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:bafe2db442ce16818478a8b8c994dd24ce1812abc57fa4919392f8298f69bf37_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:157385ca0ec638f0c88aa118ac48a65bad9c6340a154980048d6d3bb2b0fd4be_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2af86c95070026f5dd1bc32376a809962efe52ce7c2677cea1d95fae681b0fb2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:533a202d59c004cab4d88293c3bdde7e6f643e562d248cb6fa211096994c774d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8716c6f06eac708939fc218b327054d5497414f98532df5ae584b88a34db6eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2d4492f5a3ba56aeba22139b48d77b79b678cdc5fba2a97d3a7451e8cb3a9da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7540a5b42ac60f86fb7a6e9e55e565abf87182d964b0bd72c4b273ea8758eabc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:838bf2a06bc0a1691f3f86905f844ca88642ae7ff0afa8c73fd4fc9993c0af10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bafbcd4ca3c19f90ed5ccfbea36faee04f97420cb5c432668ab45ede8c274eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0ab17517d22bfcf609e4cdb488d6018e6bb9d913e352c31ec7f19d60d58d3f8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5beae5b0c29e4bb5c6c092853f96c569eed2675c405151720eadf13503695cdd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:adf30c07e01c46b39eb29e57d5c496448d73a981feb49288ece95139ad4d05c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:bf21cb7ca0cfa411baadf2d50085dc1d1bedcdc4410e19e5e0a659de410e998f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:209785b0341386ee778694c72e8b8f8d1b376216f22559f5ec391502e45395b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3c0b487707e0b7f3b48903472f6e624bcc0aa1ec853a612e4ad1a122ceb12f05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:787c8e12ac7c52b81ff0c5bdb1a0c78d1bccbdb72ff50bbff4347fa567078957_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e094b828bc70d3d9a74f4e8f8402f6654aff875e43b8340d106c93d9e7e040c5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:87a53849cba729d8f6a60b0e370e95507dcca80a20d64f3e1eeb9085be3b51e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:acaf678be1c7dc9e3d212d6c5aee316db5534f0cf2d01795822def4c51ebb27e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ca4ac54d7727cc17073229bd85989257667fb7239aa884b2cf0dd649e0f57dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:eff53fecfb9a73c5607397f56a915e1faf9720d375e3a606213d5be61fbc80bc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:349a76295286b88671128aa673fd5cb02112f8db8cd624ef2b4687b691ad7c88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:48b3fda4020fa1f0d8800b0a2039d6b28d3f97769bca45bcab22af1c5008ba76_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:600508910a52355439d54a3a004573ac0e4987ab7a4752dd46bd4bfa9e8edc18_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:88922328cb4ee7c3291d3b2ae88824212eeb4fcdf4d466ce58bb0c954571d07d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:24861ff6e64cf7b9ae95fb641b6d52a7fe0fcdc82ef234756c89496d1c3eff6e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:4aef4b63b413a097955c4b234dbeba5d0fe748e90c4e2ec11c9a8cc2a651d069_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0a811d7e4caff8ef16f6b85f1e4883b629223ee5966aa11b3b28ef94f8f7060_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bcd8a3f9d4fd120a6baf98aed8828c68224727dadbff974d0fab4f8685806d3a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:64ec585067dac7405bfc50dcb83cf4d21931b072971498ab1640332e1b6ce7e0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7b203fc899e11b289bde08361974300519c0fbdf7281eb1376cd76dbbb26acb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4e5c05f8e5bf9e5c83310a425713c020bb608b75ad01a951a3296c08fbb6616_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c9f86f3bd28a2012a76e9a643a5a0e755ee6a913b83d1b77c9a9b67bf2c1d966_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:869eb60c82c78e3de72a210b553656ece1ed1be7d07bbf74fd40a1b7e91e5dbb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:8a3a7f8f04aa9c5971d1acbdbc98048dca1c1050b465b1a684755e7860903cc2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b1365273c6a5681067020178d2622ff707e3368db05124f609237144bf361467_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bd51ae930fae4fef878322aa519b0b956888795518173977026d893a84608dd7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:260ebe7174269d55139566a4a38f726251e0bbd91d3954520d5583c425c383a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b3e3743f81840c9e6c046fbba58b3b27684b06564b047d5a0a999e2aacac23ff_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:8c792842c9a427544dcfecb16988d600b9daa83ced101704a943010d04555676_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d31b8716b75d53d37ba0b60f775a8b0359c96df34af310796143a7359a7533f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:5292478f6e073a6c1bb564c06deee7e2b8eb4178ed6ee26863a5b51a98b4c5aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a51443e413b35d93c06f75683d1ced31c67a10a85f55cce4b01b867fb8321672_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:5aa89467d78b7fd48963473c0ba2f0ba848e619c1681bc5acd5c382ff2a1ce7e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a9c0322245515be333e0c0bf0fcd0bd916a0da23def32d27e0e58bdaee947f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ee62192f17e704cb716c4d6e2a1f4412d0d954edd3f46b182db37657e1343420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f5f52001a94d63f8013ac53bac12b44f609efb94f598c408840837d97830d3cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a6d2dff1969a1bc3208ba54afbaf640fe207fe9cbe04b681d97882d14fde7dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4f7aeee497b19d4ff2e32b6c99acaa3dffe3e696db7814f7da853d6cbbef1493_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:569fef0d05c83944b4afa95136386849c7ea244248e4ab06b13ef1930d5b41ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f27772e64005b837c98df5038862206b3278d709235778ec6375efbf8dbe5f51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:69d34b9314586e18c668b5fe2867a5ad3140846d61cd14bd15f7af85463b0495_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:86a7af11b85fcfd42c20b0a4f493968fbc3a97c83d3a2d37500e5712f6a70e6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:951c89cdc05fa8c04a8345686ef403efb22ca3cd89a101c05dd1400c7758fa14_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:cf532938a92f9088516cd58cd99be01fd36289528dbc861b43602be341d9b180_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:23e024acc42c0b4fb2bb4e459211b0eefc5be75d8fac186c78f0f190c8fee68b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:70b0557d03c6d0c9e533683b48276f27f0e4d1ee871fb4255538b6e38577e06f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:98dc737bc7bfbbd2efb9b9b8485f5bf395fd8aa9a7575fefbf650dd92d31f321_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd29a7a6317ea227240c8e8b931440e3c49d3df8b920460d223c00b4cf21727a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:331191db2932be5d2e78b4fd2ac19c5748d67d0d824c43d8fcac60140fe74244_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:78da1e6b6799356ecc55f9123f76337e6fd99f633726c30aaba484fd2d810258_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c9b57ca2adb659992bbc5739e5cc3940ca4c36545d28453ec8ab223dfb795fef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d14a594f82818e8755cd05ff9b6ee29fb16e9c519593b6c06da23e6a480f4954_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1e93f1fbc5d6e36a3f884ca1597af7a6fc2411fd743d37b4d6f6cf2d8d366f91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:27bc419153ea39333e3c932fe232e763960e1b779366ef9dc4c1a121f09ec145_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5438d821ebd945851cb52643dac6421aa0b40e4ebb62f7ab1eca4c046b1a317c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f1ac1f4193d1eeb7fcfa7d2f661960eab43f567179cbabda7920ebfb4d8d7ab6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:09dc26c6275280bce65ef73a2386b6b7efb4df9911a601516ca61774ae4726de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a9494f4d3bc0497f58ca3fdacc580daf8142c0361cc5e41a5e3a2262e1ea84f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:ccac4fc8186d7d042fd5317bddc3cd58cb4a4264f5868fc89b589aed993540c5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d90e486cb1148dd1cf805cf0e65ce21b03a257006b123cf137511169fb003bc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0832475c63b4b2d4a90ca5d9e5f123d619a0cec3618a9df33f265f436514f749_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:340f3bb38b2668ff8a98e072f2601740bc55c2f7f347322ae3140259b4637662_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a883ab59682975f6167b41117921679e27e82f3c0958dfd649e47e7c9deb59cc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c92ec84f3a5c08de195cc0d40f105d689835c89c778974b7f0a57604dd268b1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:031b2334cbac7dc3a2d53f7284da0c521874f19b180c1f779b2f57c5e7b55586_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0ebfe4c1f2f314a470426156703c3451e80556a06394f56c896cb5a5d12f4d28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48ef7cb6102a4d037410ef2ad52386060e44a2a731dda42a5feb9a5a5fd2d3ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:95abc84f9ac2d562dcdab9a3e1a7a0c75fbdb043474dcefd79b2cb23f5ef35aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1aa3780d60bff7916e167aa1b586d061284e04406655cea1e4be9eee1aeccbf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3d6d451e63f19f66eb1ad3b595e326470a622682eef0e54cd6f222db119ba76c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:66287aa8bed407de5322ea5304a68b4a40032ee19a8cb1b8e7647dd72ac72b17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:f98930518e7e2f4234f589570cda382033472b286dbe17a86a8d7d21a6fb19ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6a744157cefa4752d37fbad558d4ba649a476b906926dbdc88cc0b286f70bf7d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ab1abec46b3bd7b2d067f5e2c73efd4b62c9c0a2a9507e50b90447c3430f6b98_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b54a617d1af7c95ecb5a4e60468f769d9f284ea19cf8f63b44070a0268363cce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ee7490e300c87fd6a416facc2913f2014498617df646911362f98c11e43bf3f0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:55bb25dfb34c9e4bae79ee14b022d94147c2dd61f6ff6a92fe658c9acc0c716f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5bfea8eeac1749061178410d311c28b8d98b93069dd797798d4d736109767f0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:61eae039f8e449ad3baaf51f1771bf7edd41a462766101a8d67cc3e7e820abfd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:88701094a434b3c1eda470ff0e50be3a69638f34ebeabf2fe9a44d6ed33b2786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:3bcd389b151bd9ea071a5ed08f221c8e0fb7992ae57a70242c3d205a25a2178f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:68dc535d6fb68f032b6ef1761e980172a6f7a6c9c38c50a001297c9cab0e7719_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:cd2d358bab95d22933b856e21e5cf4fa9751131ef96cab3813e128ab4e224c7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4a39feb6ddf515948f169fccaa8ceed245e8da0a53c3a4580345d403b2659ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:53baec53739c6b949ccdb7847fd817ba1ad161f7cd037cb8e56dbc86e670ef1e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c16c63a5ba58a11967be7049c9d160da0f53030dbade53ea8d4fd9459b77f6fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:21798760d77ee9467de683b4eed5008b41fbaeeb7c930bc76cf71d4ee5e88e76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ba00dc79b478cb455e318ddb102256eb86019573e67ab023452cdf6f358ca6c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:f59b1646e90a34d74d7f37409155adf6f819c3586b3facd166cbdce2b568bd0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:1bd1956317d7650dcfba7b1816b117304da7790d1bd06d57e0eaeedf91255043_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a6cec2c013f5b82ba547753580ae2c00f09479683f4952b4d675a3893ac1dcda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c9fbd4005d5887c5df0d60282bea6025fae53df967f968a18c32b744a4656f59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:299b9dfb1875a616f3a7bc85aef74c931d4e8fa555e06d17e3dfb3f5b15d547c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:425b332eb7164fe62472c4d721d70601afdff659d7bde66dc0dc778028849ddf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ca76b4c933dd053d92816ee69864cc0ee1578cf58f88e2050932dfc922568eb8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:efa4cdb37ecff08ee3f4ebbb81bf5d49a380d47cd52eece2a9f0faf586c82be2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:082998c20b08aaa05d394b56f69b4943b196715943e92b8cff7c6d6638736004_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd17069d6db07b6220e8298706589b341d0f7547cc129030e6945c1c402ff17_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4cd4bc1099951088206f0d89cd8e96fb8168f7b5b3818f528cf252d769fb472c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:76060ee6aad9470e977c2d3b90dfc1d5fadca9bbf3ecfc90971045d8e309fa59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:02d41ac5a48086885ae64354eb598eba3fef1b95e89c1d91e2f44a4545e0fa74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079fe9c2722059d55a6b9061e430a0a5004bcb6af9daa46436195e3c1d1c6b9d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a8a35fe95edd5859d03b159e4136b283790d94244d45e295f1c0c247b0b03029_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b81d63dcb3a97cad68a8574a1ba73f119eb4bc43ab5403dc730e0e3c75948ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d6d7e824b0879e5f6a1c5a603addb00542eb620d34d77faeaa418f77e1a7d0d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:a25f8e15c1422d60926bc6d37e69ed68dcb3747e1d48fee6369bdd1198033974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:da51ba4146938987aa41a01631899253ba9e3b8ca9d2683ce5cd7404d079cf5d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:dd2b8ad3c9af3b4d64e7be96b735f41d2ecc744cecd60ebfa530551d9b2cbe41_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:758046a202ccfff655f4ab5f91cf53fc3382b00ae132ef1886bb71bca5eb054e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:d88c002e7e4aba4a295baf6b12a2d9eb3459c18bd6f12133691601ffd80f67e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:2e562f92f0ae97f0913701bdb9d854c6e9ed931fd38c35af6c83ce88b51a99d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:bf89b51fd009b92840921c1fdeb2feadc71d0cc8a06c6847e0ffc94b9d5fc8ca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ba3a551264f56eba4d19cf95625b912b5cc8dd58fce2ccd31269377193fa85d1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f47dfda1061850cd74396d6bbcb998e67e06569fc5bd5bf8a162a46293ac396c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:003097fa04bf41ccd7fd209f83fb96177e8c773c7ab97dbd9a4a2f202d37d896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2da79a649e563ae2242779bfc006574255199c517e7172ae6fae2380f55e1fdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e282eaa520252adb846a22a8bdcc02461d2e00156a44d0a5a140ca8ab0f99acc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:861c675ac322f83b2f93c219a3e07340ea49baad962631c61c8c1f498bace5f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:9cf8490b02ce2747967577c32b473d4798d00555303a7fec968a820a16ccf2e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2590af58f81174ceebce7c189e1e0109a5f0d74029520a66af8d4d3c8f995653_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:495a8d7bc236f9178b9a656afc2217db15ba6b3ea006ad303642b08b452c2f4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:04374732fcd56d9e3ec6552600fbd6a8f0b0d72dafd6f1cb3a167b4bea53899c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:525dcd6d799d2685a019a88c57516cf6cdb80d8f13b596078d018fccb6dce81c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:792a33984884f8fef06d7a5b381cc3f79d835768bb586a3b6c8c71026ea92d59_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fa80be42146547930f5d019cc099b989a445e9c1f40d0c32ae88785ffe2ee5d6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:3b872face760a0664db94d9ffe82317b921f6302eabcfbd000493be85709d07a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5fbc6c94b0faf06444e527a67f3c52c1aa543747b8a2126b513d078b55c7f6b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce61a7f1f30160a2c8ebca8c0e50efca91dd4bfae9c690a00e0e8057d691aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:fbc5d2ce23bbec3d3fe4e5e3d4553593a0bfebbcb6727b20cf174e80a38d1bc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:1001beee5519da8591e1bbdc35f99429a111e65fb023d65b8735a88a8677433e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:18f3f3a8e4adec974869804560d3f4e768a78b6b536b815d57444f7becdc778a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:62c42ef393b100fe0278bc8c11942a103fb582b51a1a3fb1cf02df28d9c85094_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e9f83ecd84a4124bdb9f0a4eb92273d620bc21696cc1798b7e652502be27061b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:41b032439eedec33d9854bd1014f8c9f550de1fa666cb7bebc5feac19459c5c8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:5392210c2abb4d2d50c1ea4208badbeef7649ccea70eecc1f86ba5231fb02996_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8a2f17448518aedead9814bd1fe1d5354f027033f7f9fd2730390cb93d0a5742_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c81327089fdc34429c1261f189443869173ac4570e3230ff640b9809b979a0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:171ec696ca1f3b8825643b596a610a31673d5d40034265d8db4baf586026678d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:b555e91d82711f4bc2b86c2c0d1abe96580cd265b21611b053ce256dcb2e0310_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:0e3d9ec51031ba0b4e083f809f1c6ba6af0cef8a6db2f294ddbff8f55e69afec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ee75d952d1a035cda878c69b5b8030311e701900c5ec9bd7c653e01355425674_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:448d6610daa46025c5bac5d837fb88a87930d7f6e2602955d03d4c8a6791f16d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:6781934027150ced56aea60b291021fb8945ae8a6667385c5e7e25711993ac40_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b45108a5fb38c57392a2fb7b4cf2555f97dbd388d03631667ceaadfdbf8d069c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e9abef154e9badd820691b4c48fefa75316a7d8aa3d7286c8147056873be6f6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4bf560d7931b3be4cf3c034d8eea708f18c607763f168ac97716a2e04a4795a8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cff72adef85a196577ba8f28d9cac0354b289061745b2a48b094ba0d04268806_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da0deb63a4617403300c49caffdeaa91384a174e3b376c16b930d3848b6ead95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:da43d5b69740e1bdfbc321438126932064f69cefeb7c06983eec86055f062b2f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4ee3c31edbca58c424e8cd2e877e50d1351ea049c049a4cef641a980b567c2e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d1d2e35fe41c3e6f435e5425310c2eea61f21779f77b5bd320dc19e998a5aaf3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:e5af62806baff42bfe953e145ded17f01a7b2a4e3925660d9f5b89cc54d0d1e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebe8675931a6887e5c23fea9f6e2e0de1bb3dcbf1c5e7c0dbb9c1657693abb48_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fc6a16b71e2719d9d01d6dfeb83077c38562c08d628d1f1ae03fabe3a5b9a91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:5a251b88764949f7802e661be8b775e0b464a8b28709b691554e4e87307c7423_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:bbc739b10fccc41fc960ae5fe84bd5ef764d2ce5565f0d19d9d4c7eeab52bdfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e3b4aed4f516a451d6bc52ec22928095c510b359e433e07dbbf87ccc7e5551c3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:3d95cf6eb4e5bb385227b53d40a10093b133a9fd2c514c5ea6d4724b235593f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6e7be6ecfa4cb6e4cd1d7c09d5b4f509bcecb78e55b5ab6a0589d94ce8722f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c02f59e14f79e4c82022d3d29f34067d2939dcf0726e8f389945d35d254ff5c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ff283f4be5f48b3c34d03797d7c83baacffaf96bbd65117f4ddfdee4616624c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:47e983a1c437e64700c1cfc38e0563c2eedce5ff0b2829420a8c0c7736f67422_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:681dc998f6578d012c41e45655613d30b3c920033e9c3be6da8bbccaa8442d4e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a1e5dc4a03441a7f6407b85615f47134dafd911df408052c0f3ab16e54f32156_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a4e122906fda19247ffb641debebb009bb335b360ca7a5e3b53ddda2890fb5ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:41c873a5bb54210421c7433e158488c0c3dbedcb0209fdcc221b6dce3ed54032_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7ab4e212a4c20c183b3247b6a32f3de9cd0ecfa3dbe812cfe4321a6b1f48731c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b7bd5209d567c929c7c15720f2e868a2029d143d7f578b9c08650b90a6e6b48b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d353d1c48798bdf2b4a9d2a7f5162ac46ae06ad207e60e28b98352eadcfd17e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:4da2d431a1d6ef1f1b64dc42c6974c2991210a2b12a4685eee415eb83197da65_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5c8590fa773509cc1d9d8c556d1f0d2669a4afc88f940e74f1c05c565d362d02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:7694d1e040309eea5a9a9ca2dc152168acddf1dbd6c9a181ee6ee9ebb9220001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b04468b071f9503bdfb36ea4b5db73b9af9a871687e7b23448f334584dc664d5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:72a72d4f770ff32af02d1fa9908d72c4f9b5beaa83da5e1a8f95ba5b0ce01451_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e2dbb62adb0c29979ee385f51ec7151972917839eedf623401b628bc4b8abe07_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7782d2a77630540afcc446ae0aae8e2d2f3b5df6fb5cc1d82612956efb955836_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cb882d4573b60954635f52a33ed619b9f7a9fc1a71a1f7faa3218eb3fc74e0fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:61867404fe91041a7bfaf765e8611d4b958dd589a47b359c06a907b9d1169d50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ddbc0bb10dbeaee734d2327164b023be65dc9cc964b61ce82fcb8491e9caf63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e7c4a19ee3833dcbc071f4477a8546a6d843f584deddf1c920d649ce036c60da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:18cea22971a088cc491652efbe55078fcd25a674864866d8ae7ff3bdbb9beba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:434886a9457d234c0c8f9ef208c67c944e791424ea75de4ba8036aaea40ded02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:8e8728ada79be93a628aa48d591e6fcf00acc620f731834e3ae30afa6f781683_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e4341e121bfb094b6d991920455151a91915215f46e5cf4f588c7f41ba0ed266_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5af7e48fa0958b40a65a7d5d71cd1e50b86b09b85546f2d0d7a1a566c976bab1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c4c348529a0d5dfd546de8b844e820df41cc2f5532645ba7f43500876e5e817e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d2ab1956c1573dddbed21b4f2fa4cb3a75d6c614f800586b1d9f234a185016f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:eac821a4aaae0aa9098d7cd0ae0439e67d426f1decdf5f2087d1185ade9be871_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:0c137df9d8275f086e66a39549465fea4f2a69cc6aaf460a55a5943fd85b1ce1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2790590005b8f5c03eca9285759fb9f6472f13c8152460c4c9a4ba88d36f914f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9d058d8722a7dca662dd615baa2e6b5f401eff2ab097f5583e33e39df5bb83bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f8c0237f056ea5de9efb2b8b95c16a7e5be9327069984dbffab61c96fa21c97e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1c296fcc8099a6034b86412b0480a7167fffcf893d8e3f92690b31dd7eb9763a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:914c69bd4bdc9c8af455c88f8c87108b3f71098ee42e52fbf2676a4474c94cb1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:bbf9dedd120bf17fc00a71abadb4eb9b1b302d5c1318d40c7b1a94cbf125a550_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c02576fc57d23e1c2482cca72c82c4c478d3563fe72e52cad086cfbbddf5effb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:013caac5eaeb04e2e277577a0ca9a90a85f630c2f66d79b2798c090d7a1f32c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2fdcbe85a274bb74d55b8ab58849417c89312d910817a6ed67095a8007c27337_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5302b3336597878613f4903b81ee45c55b68185e66ece481cc9bec7f6a711bd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9ea355f3f0cbcb0745b9a4d900f53c04412da26b024002dd8f478b2b5890556e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1194c89d2f7a4119084187f1237ea520814cb5b09215dabd5c6b0f5b07a44eb8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:6ee13ec03d8e49b5b95d93f7ca9e8a65e3aebe36f1e9fcf4afa5df9a54fc8c3b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:98d74e0ba5bf93621889dd702058744606a8a5c9dda44bef56eb233cdda0d754_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fa3e65d5cba6c9c1410c25d947775f1840886d9265a21b4c8ad350f787156163_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ce066947d975f9f403b098e2f1b363b76967ab5ae744f92e56dd4650146a4f1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:74382db1ca1dde9ca3ea665bc933b5e2799337504e5d7b22cf49831f810c3604_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9338246f75099a16ae46045e3182207bf4c4b33f1aee8694fa73007d06a65c35_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a7d3b5a55085566184474d61a92b00a8c11d7194f1586228b680b6360db1ba46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6893a48b95bbac7201bac7fd60413ba1faf620420fdd5961bd7383f0987b7a92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:974889c5687de2520b5638244ed4d4f6d40556f76d20fd254e744061be71eb8e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:c3d506b1dbe8e0e57ad4fc599188ca92e559308ff47d4eb956b410adb2610412_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:de118cd409f2012f43da3a944f0cb567c10b9a4d41fec413cb09d196b50f633d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1948fa272b301b129fcdf825b300ba61309539c5cc228334c845d6cdde7b95b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2ce6322b29b31412cd39e9b9eccc39da9375ea534208afe572023f76925c8c84_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3fd32c1fb612122a23574e09f848881fd02c9bee109b559948be582e53f6c213_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:86e308c016007b5e4a1a420286b812b38b62d157f6bdf30ded6cb96dd3edab86_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:458d84ada225676de1ba0a4721416747f4662358b5e39cee10669a85028f462a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79fe84504cdb7566ce31296a2c659b3e9d20cb3dacd0a0a89700173a6da51433_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:bf15c1032db92cc1669f3764d87c742b05c000fcf9ada21eee00f48c32b24b50_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e46906ccd7b21add62135021c46a272bd5adec7f9feab95cf23614550ca1978d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7d120282e3dccf04803945de3cdd3e85953d66fcc5a88f22bb16c50e612a2022_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:82bf1b82ef5142b566ff183fa7c43ab65716338896a666e694f013a91ba7b063_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:87f5b3c28ec83f7ab489155e55b6ba6b518d2e3996e4a30c3e6c35a96a5bb2fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a164a6766cde926e00c13bf86fade9fa9037b3ec7ce800b74e9bd5272a9d6734_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:403b235ccf12fbb93cc9f6f979dceebb8222e6cce0b402e7d1ed5341c47bdaa3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:4b098f541f2f448c59858911e004fc9eb0f6caad4d987740e512a06280a61980_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5c6a1ae367b57e95da17abd13b5d0f1b94fafaffbae4914aada3e84c9c1eaf92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f4026029f65407cd09d777aa22b298c29c4538290c0b769146eb7399d571d031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1a4b0f8464127c79fc5b5e14ddf6735d7dd9dffc636ba5b74d239d78d422a1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4db49c94ad3a7b6a92e9cbc4986fa1491eac4edc3b4c9cc278c14a320977d963_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:74eb097bbeab6f5ed802757bb5103914cfa3162460261f82292eb54e6d8dd3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:84b2ed42bf214b7a09371701b25f83ed08662ccf241eb99c7a8295aa2d84c5e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:54df6540a080440bc255ac7c6083c3fe87c9e7c930df064da97c6c53cb721a49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ac68ca19665ad73daf411261039e62e24147fadedeb7ea2322570ec030077c3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e070c9aa3a3f6983dcf1df3e3a477cf7e165bda3cd839a0c53cc8ac610ce76c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e863f633e756485059e35ee043143dd6e02c674e08cc237bc1d272444b3ce5ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:14e062b5b53d781f5f6a30f5c297b6f9480c0ba1b236de6620d2c0dbce0eb1b1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:25eea661cfa9d1d6ca5b402542c8fee0fc5b3270e1e797926046249a770c2fff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:30d4f2499699f8297a437c7029df6311d623fe092cb5753158b3aafe800b4faf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a99c052ed2331a544da1b140546489ca8b540e03ca9905d4e2fa43ca3c3a8483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:dc5de0a75051b02229bc66a8babee955f05b9f17ce606aeccdf2480c493d5cbc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:798690c31287d596bebae4ae4b9cbfa43458fd33591ecef668aa2a32513a6c66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:664e9d9c3daa4042969a5bf589b23d233879a29fe4677ff64ee612be10335971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b120c60a510ac65629cfcdda213f3c7a15caa72ccabdf3da5125596c757d1323_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc5a9bde6dd62e1d08047403730aaa0038c3aa6a884cdf7cd98a36d4a1240fd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ceac06195e13891d7aef748885fd573ac20e0ca2b226bc93b212e85bc08be04c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:637ac6b519bd5e1f9f638af4b9fcbc54099806f02490107c5afb5c69741ce704_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9a357d1e6d15bff5d8d73a0bd2b8b5efcdc2491c9883f9d4ca8f2016403e7098_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b9c02f3694c4f601933fe68c979034c2a23dfb93a4d0688b25dcbe317384b1eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fa3413e6206422dedf84cda45c109591784bd74d3d932e2b4176c148e5102637_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:07923254d9aa87b7169e7806341bf479b954b141b18f612e2d655bc80e6d4a70_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:526bd8557e0785ff61200fcd778b9bc07adf59e517369685be489476ec0a4b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:778f5cd24bd922b58177fe6f7696bde0e3ae8a085dfbbd2956ea91e51db38860_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c89c25be58f55038b1eb98d5baa3e8c1707f4bf0e2c4b42f04daaf2efbb97979_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0c1832e63b46da150f3c1b6d645b492a069a795d1aa1bc9a86353cf0deead8aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ce2585a47b71a5897b9ece745a1a575a8f6ac075cd331c8629ab84169fa3539_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:21fbcaa36cbb749413aa99325b4002e6380f52d57e871aef3febf6e76c1eb9c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f72dd7049d89eccebff95a1efe31c8eb45010fed083b531e25e2857e8c58dc84_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49a3d847dfa5d62d248e2caad40ee841c83e654520601bd323a65ba506e08022_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:625387f1cffb4833d419f4f938373ebb2fb733e4a4952ffa5df29148d7bbc34c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:995b5675a4454e42dcb290ff1e1b6221b43dcf3ce38fa4272e667a837a908d1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a83f241c116c9ad66c82fc4fbd70af3f16c6c406934ab1717cba5aca506d50df_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:29def56cc1af5c1e38d21427350a9bc9824ffb4f3c4ffc132f99b0fb9d8e1581_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:919d9bc37f88ccdfafd542982922214d5073e9f42e466970504448b20473887d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:93faf6c1ae6106e1c2faa99fba78502fc7d52acd44cc02019fc5cb590bea8240_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b9cb656e94ef7e8c5c5d5ef52b9b5928e43c35c0c1b67136e7471d5cb6ff8767_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3edfd9857c91d75324c36caaa1a9422c0d0b204e3091f594098c1410dda98cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a999b4cced38936e7c00d30e9707ad6d90e9864ff70e168461caf1f6b9860673_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d08ede90c12dd51e499470d27f3f08a57f8bdc7975e52a933b4079ac43d27346_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ee4cd46596597ea7d1cf0017c96677d871dc92af813eb129bd8b288a6655276e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:01baefdf8c24c26f62e4fae7361781a4b6a7e60945775e66da61da86a87f6dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:a2e901913503f0c1465aa89d3cfc07c51287af7d9c00cb6061436988373ecd61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b2e3493a81ffe9087e4ecc7c08c642daa643909eb505a95d3372c8fce2875b54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e220fd0071a468b334e898d39fc698a70e0de0fc342fa6f44d3db383d488cf63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1ac6961aeab0fe1892d3b0a3240d48068cc556b847a5015cc27758f927e89f9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4df15d6f0a86b22076ec81eb482944ecbfcf0e1730db9d7a9faa0ed126bb1a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a824b9fb958848e9ca838ce7d2ecf15284aafcffb63e3dcbb17191861f0a8c45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a878679f09c3c28750dc184de6c07508b903edf18c3adb91204731e6c969666f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1e3167e133bdd2aa5fbf03bc16ef0c497b1c625e40b44d7c07535309817a66e0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4887b95e7935389627348bf60688553d11b13533740c30acf9716282db353665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ea1fedf9a731dc984c6295d36fc5f972c298e51a23c1a7aba95f3e9f06a6366d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:fbeb6f026ea838e3f21c07a028548892f07bc5587db4ac44f7c59037a13a2bad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:874ec239eb32fd241dfe4736dde8e6b280b308c1f50463fd7e8fd2ee556c1f74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8d1a6ac42c1b99b430cdec867cd61e8f40502fd59092bd15fbbd8e0107c73e80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9ca22cd8d640bde40b5e356babcca02e362dd46722e4f3ef00b5a6b46a33bd5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a595234286e415dc490827f2ebfd19cd619910d97d91171eca80dc80fc099e7c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:872b4338e503fefdd2785a75464199bcf8e5e249df45947683b1e0c0cd731db6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:908d21e9e905dc33b1d3fc16f9ceabee774ace334be2ddabd1ab3b9f8ba9a51a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:c6c32b557eccac1aa3eb1e6a61d9e4167bad14e66d92e84353528a4ee3ece2d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8682f1c528dfef6c20d871af2c1b8e481c96e4ba6cda434341a7c548186a775_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7669a7cb96943b7f11331484aab2c0e5500e2b61dd262afa5f1801bccb1a9a04_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ce40d79d0fbdf012d7d8fc27a86cc282cb0690e3995e31fceef3a6e2eaf1b778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:dd6377b4121e9075a70e615e2202850f9cc578755fdf53ad98b4e9e56a55b717_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ed81a74d33041dd7fb377e25c455819d3889a8adf155f809885b0b3e10d93a9c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2461a8538a8db7b05dbafbde7d169241ffcc8489acf2be1c397194cb2e46ca24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4a06b86a05366819301b596410afc5a0e3bf90b58d7a3b7921fd882a73eafb44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a896b25d925df11bc30c63c81ab1599b1b708672ee44acd51d33ffe419fd520f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:d59406c6371238df626f019d41d59925b6150ccb869205b09ec34ffafac2bf72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:05dd280dda5ccf2107b46ca0380f4555f0bc37159d15fdb5359b3288a20461b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3e5cd00e1f234dc6de3fffc5be89f0a41bf798f01cae1f7acfd0a5e773028e3b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:eae547a1a3508e072ddf1e254ca8977b87fb29f0e05358721c1bca8241346443_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f20f28cc0d72eb4b66e73be7ac70a283668a76c00a86dd388e749d3407390a0a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:1aa0b4e5200fd45f70f4656b4dc80c3d40c604ac9a9e65a99a23dbb9ae414a31_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3b70cec7a6b32ec7444e806fd837f744859a787ca4de40e673973e4a5c348e31_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:849bbb3038be2ff92dcc227a660435bc1d9c4421ed97baf8211a9d768eb86dff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bed1d6352a8857d2ea836e2db81f60c465809f55c2bec6f529c95668db8913bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37692d80323cc3c75fa6c6d450f5cdc2037d895327700debfeac0bd64e48de7a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6215c1ab3945ca039af8a8aaa79e94f0499dd2417b769f5f2c129a1b37844522_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:74c09b4c776b1405bc3a1d3ad351ba3aa8b804ed539df4ef8238b2e6a18bf1b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a5557b4ea1ef34c8957dacac47bc7d3c803f12480521a0dd0a2f5b0b72eb498e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:04e26071a2419685503bf5976de036e15b065568eb965f8abb74a95f0b93c47d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:21a958eb626260cd82855672aeb6a652329fcd0a7dabd07e71822bec6a6bbf7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:91e04070ea996637d76526ed90acdcc5c7122fb2897355a06041803d3a41250d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:97cf9e426c7fd9ecc373f84bca220ea75d5e8e73d26682e31d2c9acdde9ee76d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b569056e9a4e0dd20f2c7d4680d0da8c749e97914d744e4de4d7836a000ffb12_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:bffe20a50363edb7753f7b350bdae55622203f76dee9a3b820422ba25af9e2c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d7445d9a3f58c4dcf663982de92bd7ca43cc95ee3d0d63429df9f22c04af9aaf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f9f60cee2724b99407cdc726c6478e9cfb0f416a9ba190eeb59758a80495c31a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:130c6c76d77c6415ab95ecbc7821f28458cc0a0aecb92f6ec63292b616beb931_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c68f653f7e280ab671434ccb6da00001222a8790e630b5187d384a377eabf3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:15e4b6e141fdda3d8ef69900ce99be2bed898d79ebcba83cb9bc745ff769f14d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5875c02331980a9c75fe15b63a8f107c58f8ec259f257b7f6d220d3d052f039c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:04044c480695d6fe89650e4589702170e04de1dad13348660256cf2ab17a4fa9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4e448aa66da0d967a7988b1983c0196b73a7ed9c5f90c1d4c714ee113d8dc35d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b633a101e62273474809d012beffd71bcd6bab8b49459cb68afce381c7ff1ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:e0cc136ef93e9b253abcddd17565a57da28d08ae08fe5c3bb168c32cf38a3ebe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:60f8168cd19d250d4ca6dad13c1ee0c65f8d2c6ace05306da84521ee633adbd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:99b93df45b39ed3804b817253d2e7c23a67f5c716e2465104d013925ea16f1a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e337393ea964ab11795ef138ec8866d7ec2189e44a2fba205e66c4ab2b8f2f88_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd05e6925893237ce742c3ef0ff0f7a963b719b7e6409d42cddff4721f5bca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:41cd2d75b723e1f6f8616f1ac4b1c40ee4a2f1ec916ff1dcf6cd0c108d47c526_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8994a98405248a1a1163c549306b5c57c11144f6ec1aaa6466871d427a033373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e00f1995d2a8823a93e99ab3845514f459c96c12b15953cc0a318ff7cb660da9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fb4f74ff492007ddc1d37cebc0f5c349d27fe639c5860d84eece2cd9b94b1708_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:416155040d0e95f5bbfe350bb0f7eec5111343e763662a49c1b9ba113d45da5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8e8df46edf8779ff714e9f4daee5312096462492ef2bde342689894876ff72c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b11e4679683ba248cb82718dedb622057247f71c48ef4b28da783b6214e9986f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:dc5e096d6f4380fe4ea46de7e57192213ee99e92c2ad94d581b8517e8a056970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:50f92c3a968b8b0b3603fc59e570722b1a161af681650308234672a73a82b983_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b291443782f32c4ffa2adc7a785021bb716395132265639abe133eb03f060b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:906c26fbf40d8fdcd6195df83dfd118089cbb694430f2cfe49949c98dd15ffd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a911cc1bebab00edaa3b49ffd17a8e984f3b112005332cf0664e8fdce06937e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20716bf889970d83932eae72329a23978717a70868bf4a85a70c44a9c6eca2b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:380357f477d862f580d62b71031605ae0392c8880698aa412ff913e23110572d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:afb8b63a6055b141c7a2ebc48cdebc5c55a97d704fd1bf34912c3b1bdb7b30ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e1fca548e553b801653539047ab31802b73d5113e1a50f93883978d5a5635fd0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0172ef3efcf0264b6cf0ed5909df4abfdf595148c936b68b177e7364b07fcb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:0e5b45e78a01c6c033d024188742babec9a49dc52adcaab909ed0dd1ae7e0bb3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:18fe899f79022bd825b60d38411ed9ce9136791be2e71cbb556560c125b0ad36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2d3b3c0711d8a1f21311db01ab708336a89a1e913518ed35ace1cd4db69555c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:0182ce69babbd87e96daf1642a0e1574b049b7bf7716acd3f46e0690540893cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:32f27141edbc243b1b450c6f9f14ce941d487feeffc3b10961fd32aa568362fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3f31926db4cbd37c732c0ed0b3c493c423c95e72ae2158fa3d9abd0562a9d407_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8e2b7eabafaaac6077cc7a0bcd576f7b6d2b25507fa5194aedaf777ea47cd1c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:33dc28d8be516c91661d1d4476e0cb3e4615c919caef483baa1bb172e2c7f4ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:349e8f27836a84cfae11b76f18a17ac4732aede36fd2161af5300cb188fd94f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4e22815290c65bf92964117aadfe457634b489bd5aa65805519420b08dae636e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a4a054b68dfafe4a2959433a2e65472a86116cce3fc8e0c3da84b6b570b0e745_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:133ec89d51ff0370b160c377df1cbbd280b3176edd85312f04b6b10dda090b62_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:214ebfd495b337b2f0f3982a1fbafc0ae63116e4dd933c937e1bf8e0dc428c21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:259897cef2b99741c611fa4c54d0a426c2f227a091c2fc28ef7f456852fed7fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:37d21040d464e441750f9dc5e1c1be273a092c5b87c07ffdc007735fc9d79e22_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:12b1f04cc85f75927cadfb919c1eb06667079073d50036017da6d9755059a055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:17c978a581edc363fa0cb714b95277b7afafbb1a717210f1a14d7697b4661024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4d86fad3386d71f0ba2bc82f576bd79a0a48a17713893be6528c1b7c981c11b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a22260a9225f40b4748403721b2927afc610efb5f7cd3c9cb49c61b9a4ae1835_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:10bf4ced241e7fea0fea5b47bee2b827d0b007ba684ee0a6e704666d61b28201_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8e0ef745f1f75db60b103469c6006a39f379a8ed70b46bb47a049cda3fe8192b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:9e6821f2d27a586810f4c9ef0ad7fed163738c490c91bdd9ec662d4120656049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dad75a29f54a757f240257ce783a2bf63aa43348f76c26cf9c5533a573171de3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:47b1c914737f9d88227621e594eb714cee6a69914e78e4735f8a86d32c67ee43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7789921e20c36aa1502c5b1130a1bcdac0745c7f003647525ac86807d1f3f78d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:bf808156f8e45f7d53acf844ac258e3f8c5173a89aa6657023b7229d4768d4f6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:dd0ac7fdc9822d0488ffe8d770696953400aeed88a511b266033233854464a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:6ff6a5a546d8da61e37d151e70bdb9764f61743599ca53ce2d930e9777e26220_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:ccfe0dc67009621ae22a9a5f283574a1fd4a36d8076654032cea3546721c4fa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d679d6e06f57fe090360a45ee26aa7d8aa7ee7518bcb55e6c9ca6ad73ed980b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:efb92e545f469c43f69ecb1b149ddbf9634073e1e903c74b24fa2c6fa02f3d91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:589ea9994006c604cb6f07e3844a8195d082516eb69dba3b0ab7a2ff91622914_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1de27499db725b038cde0bfda6aa84a2e7b8d4e28f779bcb85cbfb16382bda8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:99ebbd3fbbb19d1ff3bf421423117f4247fd4b5fcc47e4630fbd14f19b6ce5c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ce500caa309e006865317331410169a347d606fb7d4d07bd3683615cf744304e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d84fc77e22d7a5686d5d821f8a76b36c9f72eed8ed90aa91466a02c64b4c9fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e18059cfb9c69915836a2deb06ca3da6fbd1d2f74a7d75da55f3d52623b1c532_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5d1b38cdc00ec1184e0083b033cdbe14dc1c4f4e960e49d2fb61be2adcf4351d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c4e27398864d4cfe3399a386fbae3b675a2de15c51c494e2867814b78b964a9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:c9321170c0a829ea58839a29459493a3129fa52c0d89bce53a5b5c3237c1723b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e43163d5074e4f4cc0345a06097e9e5c8ef3aeb331cad5ebf0b401d3ad4a4e8f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:21658
Vulnerability from csaf_redhat - Published: 2026-06-03 12:58 - Updated: 2026-06-29 04:50A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_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:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_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:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_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:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_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:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
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-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.43 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.18.43. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21657\n\nSecurity Fix(es):\n\n* Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code (CVE-2026-35469)\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n* immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution (CVE-2026-29063)\n* @remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n* lodash: lodash: Arbitrary code execution via untrusted input in template imports (CVE-2026-4800)\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n* lodash: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n* golang: archive/tar: Unbounded allocation when parsing GNU sparse map (CVE-2025-58183)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21658",
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"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/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21658.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.43 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T04:50:06+00:00",
"generator": {
"date": "2026-06-29T04:50:06+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21658",
"initial_release_date": "2026-06-03T12:58:58+00:00",
"revision_history": [
{
"date": "2026-06-03T12:58:58+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T12:59:48+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:06+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Adc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ad5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ab0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Addb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ac6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Abeb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Ab6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ab239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Afc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Aacdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ab24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Abae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Af64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Aa9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Adcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ab40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ac5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ae3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Acd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Aefdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Aeef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ad96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ac74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Afad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779780208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779860119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ad8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ae2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ac4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Aa223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Afefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Afee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Aad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Afdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Aa1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Adf1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ace1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Abb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Af8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Aeadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ad2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Adf66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Afb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Afba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779780208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779860119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ad6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ac4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ae6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ae8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ae8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ac2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Aae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ab7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3Afdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ae456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Afefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Aee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ab3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ad9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ab79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ad01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Ad83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Abe82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ada8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aa10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ac34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_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-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_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-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_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-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_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-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_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-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_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:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_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:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_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:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_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:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_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:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_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:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_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:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_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:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_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:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_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:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_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:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_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:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_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:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_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:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_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:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_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:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_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:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_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:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_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:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_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:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_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:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_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:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_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:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_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:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_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-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_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-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_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-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_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-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
}
],
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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-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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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 OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_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:21691
Vulnerability from csaf_redhat - Published: 2026-06-04 16:14 - Updated: 2026-06-29 04:50A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 | — |
Workaround
|
A 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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 | — |
Workaround
|
A flaw was found in Go's 'cgo tool'. This vulnerability arises from a discrepancy in how Go and C/C++ comments are parsed, which allows for malicious code to be hidden within comments and then "smuggled" into the compiled `cgo` binary. An attacker could exploit this to embed and execute arbitrary code, potentially leading to significant system compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 | — |
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.13.67 is now available with updates to packages and images that fix several bugs and add enhancements.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.13.\n\nRed Hat Product Security has rated this update as having a security impact of Low. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.13.67. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:21689\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.13/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:21691",
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"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-61731",
"url": "https://access.redhat.com/security/cve/CVE-2025-61731"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61732",
"url": "https://access.redhat.com/security/cve/CVE-2025-61732"
},
{
"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-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_21691.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.13.67 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:07+00:00",
"generator": {
"date": "2026-06-29T04:50:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21691",
"initial_release_date": "2026-06-04T16:14:53+00:00",
"revision_history": [
{
"date": "2026-06-04T16:14:53+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T16:15:39+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:07+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.13",
"product": {
"name": "Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.13::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler@sha256%3Af6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler\u0026tag=1779863413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel8@sha256%3A4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8\u0026tag=1779889720"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel8@sha256%3Ae598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8\u0026tag=1779889629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kuryr-cni-rhel8@sha256%3A231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8\u0026tag=1779863394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers@sha256%3A8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers\u0026tag=1779863994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel8@sha256%3Ace86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8\u0026tag=1779864485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel8-operator@sha256%3A82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator\u0026tag=1779863985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-operator@sha256%3A33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator\u0026tag=1779864102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-operator@sha256%3Af8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator\u0026tag=1779889634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779890827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel8@sha256%3A7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8\u0026tag=1779889609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-operator@sha256%3Ae5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator\u0026tag=1779864003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-operator@sha256%3A8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator\u0026tag=1779864034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader@sha256%3A85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader\u0026tag=1779863974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns@sha256%3Ac3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns\u0026tag=1779864040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher@sha256%3A62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher\u0026tag=1779871348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher@sha256%3A62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8\u0026tag=1779871348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8@sha256%3A9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8\u0026tag=1779889631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8-operator@sha256%3Aab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator\u0026tag=1779864020"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel8@sha256%3Ab642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8\u0026tag=1779864063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3Ae28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779864161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3Ae28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779864161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779864052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3A860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779864052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779864793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779864793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel8@sha256%3A48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8\u0026tag=1779889636"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ab35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779890865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3Afce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779864235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy@sha256%3Ab679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy\u0026tag=1779863392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3Afc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779863390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3A5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779863389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779863444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel8@sha256%3Ad58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8\u0026tag=1779864639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-node-label-updater-rhel8@sha256%3A8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8\u0026tag=1779863998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aa3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779890137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779890113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779890216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779890119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy@sha256%3Ad9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy\u0026tag=1779889635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3Ac8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779889644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics@sha256%3A0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics\u0026tag=1779864165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kuryr-controller-rhel8@sha256%3Aa6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8\u0026tag=1779863363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace@sha256%3A88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace\u0026tag=1779864043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3Af03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779864023"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel8@sha256%3A5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8\u0026tag=1779889657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel8@sha256%3A0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8\u0026tag=1779889638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel8@sha256%3A888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8\u0026tag=1779889676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Af97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779863452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3A1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1779889704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3A8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1779864415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-operator@sha256%3A2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-operator\u0026tag=1779889659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3A0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1778765223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3A159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1779865553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube@sha256%3A8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube\u0026tag=1779864503"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover@sha256%3Ae9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover\u0026tag=1779863973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod@sha256%3Ad9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod\u0026tag=1779864280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry@sha256%3A90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry\u0026tag=1779889635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3A3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1779313164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel8@sha256%3A86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8\u0026tag=1779863952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager@sha256%3Aba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager\u0026tag=1779889649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry@sha256%3A054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry\u0026tag=1779864451"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3A85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1778765353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3A25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1778765274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel8@sha256%3A2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8\u0026tag=1779889723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3A6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779863997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-controller-manager-rhel8@sha256%3A0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8\u0026tag=1779864079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-csi-driver-container-rhel8@sha256%3Ae3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8\u0026tag=1779864508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256%3Aa6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8\u0026tag=1779864192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-machine-controllers-rhel8@sha256%3A69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8\u0026tag=1779889720"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel8@sha256%3A925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8\u0026tag=1779863999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel8@sha256%3Ade4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8\u0026tag=1779889660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel8@sha256%3Aee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8\u0026tag=1779889680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel8@sha256%3A08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8\u0026tag=1779863969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel8-operator@sha256%3A395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator\u0026tag=1779864074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel8@sha256%3A3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8\u0026tag=1779863989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel8@sha256%3A96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8\u0026tag=1779889642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel8@sha256%3Af88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8\u0026tag=1779889635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel8@sha256%3A1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8\u0026tag=1779863994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8@sha256%3A9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8\u0026tag=1779864633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8-operator@sha256%3Ad736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator\u0026tag=1779864005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3A6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779864603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel8-operator@sha256%3A43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator\u0026tag=1779864132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3Ae6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1778765373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779864236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3A799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779864120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel8@sha256%3A0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8\u0026tag=1779889678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-operator@sha256%3A530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator\u0026tag=1779864074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-operator@sha256%3A0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator\u0026tag=1779864513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel8@sha256%3Ab3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8\u0026tag=1779864055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap@sha256%3Ab2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap\u0026tag=1779864189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-operator-container-rhel8@sha256%3Ae5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8\u0026tag=1779864740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-operator-container-rhel8@sha256%3Ae5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator\u0026tag=1779864740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-operator-rhel8@sha256%3A807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8\u0026tag=1779864043"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-operator@sha256%3Af97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator\u0026tag=1779863993"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-operator-rhel8@sha256%3Ae452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8\u0026tag=1779863952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256%3A226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator\u0026tag=1779864018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-operator@sha256%3A0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator\u0026tag=1779864034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-operator@sha256%3Ad2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator\u0026tag=1779864123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-operator@sha256%3A67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator\u0026tag=1779864006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-operator@sha256%3A4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator\u0026tag=1779863976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel8-operator@sha256%3Ab941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator\u0026tag=1779864264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-operator@sha256%3A2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator\u0026tag=1779889616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-operator@sha256%3Ae274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator\u0026tag=1779889647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256%3A2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator\u0026tag=1779864436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver@sha256%3A1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver\u0026tag=1779864047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-operator@sha256%3A4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator\u0026tag=1779864733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-operator@sha256%3Aed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator\u0026tag=1779864442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3Addddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779889628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel8@sha256%3A6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8\u0026tag=1779864212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-operator@sha256%3Ac35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator\u0026tag=1779863398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys@sha256%3A3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys\u0026tag=1779863893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3A7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779889665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel8@sha256%3Aba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8\u0026tag=1779863998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3Ae4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779863966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel8@sha256%3Abae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8\u0026tag=1779864441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Ae1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779864022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Ae1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779864022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter@sha256%3A0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter\u0026tag=1779864025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter@sha256%3A0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8\u0026tag=1779864025"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller@sha256%3A48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller\u0026tag=1779889611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller@sha256%3A48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8\u0026tag=1779889611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ae765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779890788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel8@sha256%3A0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8\u0026tag=1779864509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel8@sha256%3A5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8\u0026tag=1779864100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel8@sha256%3Af634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8\u0026tag=1779863996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel8@sha256%3A7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8\u0026tag=1779889604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel8@sha256%3Af590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8\u0026tag=1779864019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel8@sha256%3Af25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8\u0026tag=1779864104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256%3A59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8\u0026tag=1779889642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel8@sha256%3A2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8\u0026tag=1779889658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel8@sha256%3Af28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8\u0026tag=1779889649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel8@sha256%3Ab44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8\u0026tag=1779864066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel8-operator@sha256%3A7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator\u0026tag=1779864162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3Af3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1779864501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3A81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1778766542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel8@sha256%3A478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8\u0026tag=1779889585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel8@sha256%3Aca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8\u0026tag=1779864651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779864128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers@sha256%3Af65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers\u0026tag=1779864348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-operator@sha256%3A25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-operator\u0026tag=1779864206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel8@sha256%3Afa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8\u0026tag=1779864736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel8@sha256%3A4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8\u0026tag=1779864245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel8@sha256%3Af59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8\u0026tag=1779864151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel8@sha256%3A30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8\u0026tag=1779864229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3Ab0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779864726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3A6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1778766175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller@sha256%3Ac54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller\u0026tag=1779864390"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3A13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779863412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3A7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779863416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1778765257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3A5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779864053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel8@sha256%3Ad52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8\u0026tag=1779864236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter@sha256%3A9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter\u0026tag=1779864028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3A360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1779313037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel8@sha256%3Aac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8\u0026tag=1779889646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel8@sha256%3A240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8\u0026tag=1779864046"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel8@sha256%3A19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8\u0026tag=1779864015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3A2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779889640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel8@sha256%3A9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8\u0026tag=1779889694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel8@sha256%3A123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8\u0026tag=1779863972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8@sha256%3A724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8\u0026tag=1779864222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3Abbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779889602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel8@sha256%3A7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8\u0026tag=1779863995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8@sha256%3A987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8\u0026tag=1779889619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovirt-machine-controllers-rhel8@sha256%3Ad8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8\u0026tag=1779864238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes@sha256%3A61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes\u0026tag=1779891613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes@sha256%3A61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779891613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel8@sha256%3Afd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8\u0026tag=1779864153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-operator-rhel8@sha256%3A540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8\u0026tag=1779863962"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel8@sha256%3A12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8\u0026tag=1779864168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel8@sha256%3A9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8\u0026tag=1779864213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3A0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779889641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel8@sha256%3Ab2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8\u0026tag=1778765374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-operator@sha256%3A19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-operator\u0026tag=1779864304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3A0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1779311878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel8@sha256%3A9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8\u0026tag=1779889665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel8@sha256%3A9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8\u0026tag=1779889665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3A809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8\u0026tag=1779864199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3A809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8\u0026tag=1779864199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel8@sha256%3Aace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8\u0026tag=1779864192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel8@sha256%3A2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8\u0026tag=1779864001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ada22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779891537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779863397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader@sha256%3A0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader\u0026tag=1779864034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator@sha256%3Afea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator\u0026tag=1779864228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel8@sha256%3Ad0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8\u0026tag=1779864564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter@sha256%3Af9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter\u0026tag=1779889631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3A20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779889664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel8@sha256%3A8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8\u0026tag=1779889644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel8@sha256%3A966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8\u0026tag=1779864320"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
}
]
},
"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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"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.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
}
],
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
},
"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-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cmd/go: cmd/go: Arbitrary file write via malicious pkg-config directive"
},
{
"cve": "CVE-2025-61732",
"discovery_date": "2026-02-05T05:00:47.678207+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437016"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s \u0027cgo tool\u0027. This vulnerability arises from a discrepancy in how Go and C/C++ comments are parsed, which allows for malicious code to be hidden within comments and then \"smuggled\" into the compiled `cgo` binary. An attacker could exploit this to embed and execute arbitrary code, potentially leading to significant system compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cmd/cgo: Go cgo: Code smuggling due to comment parsing discrepancy",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important vulnerability in the `cmd/cgo` component of the Go toolchain. A parsing discrepancy between Go and C/C++ comments could allow for code smuggling into the resulting `cgo` binary. This primarily affects systems where untrusted Go modules utilizing `cgo` are built, impacting Red Hat Enterprise Linux and OpenShift Container Platform.",
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61732"
},
{
"category": "external",
"summary": "RHBZ#2437016",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437016"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61732",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61732"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61732",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61732"
},
{
"category": "external",
"summary": "https://go.dev/cl/734220",
"url": "https://go.dev/cl/734220"
},
{
"category": "external",
"summary": "https://go.dev/issue/76697",
"url": "https://go.dev/issue/76697"
},
{
"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-4433",
"url": "https://pkg.go.dev/vuln/GO-2026-4433"
}
],
"release_date": "2026-02-05T03:42:26.392000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
}
],
"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 Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cmd/cgo: Go cgo: Code smuggling due to comment parsing discrepancy"
},
{
"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 Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
}
],
"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 Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
}
],
"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 Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:14:53+00:00",
"details": "For OpenShift Container Platform 4.13 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.13/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:596514a0fcc2e3110cbcdf2fc57295c2df375f2f0ff36452ff0d7d181ad6c603\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21691"
},
{
"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.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:799ef4b259c6aff562c5a3b15c8b0fd83b2d7b5cff526b342ecbf4e5896373cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b35755c010da1f4e77a53f43485156e0d0bd9fff3093a719ba7cc04fb070edbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:fce28fa7d558f19025d935f50c27af647d8e183345d82f53956536b2b121aabf_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:57b6e075f919d85ab8faf4f639b521a1ea730bade44d379c3e79e1fb67feab78_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/network-tools-rhel8@sha256:360e784b29fff56c23f83228efbbe63e69eec1649f0e9f53c53c8889aab664dd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:888089a33c80f0c97b1f90b31487695814fead6910fa5c5e1ab2e931d15f0724_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:0ffccf7d46e03493058c33451201744fc6f9cc6902fd33db34d2ae2acf5469ef_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:85c3565310c61c86fdf36ae04d0c741478c66f8792a0b47d0ab337503c9a4ef5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:25ffc183febfa2cf8c94b15af292c9afd7a8ceffe2d2904ca4d17fc9f60ecbbd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:2d6001a648da62a0eda639c4f377d551cbe9bae0f5eced64bdebec9a8dc4700c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6dd3b2fe4e877c77d37362e0ac3e67067067b1ff8be8ccd8b32861900d7a52f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:0c5631a9b7a93fd6b815d20463b3a551590cfa1b09f39d77b8b276471d2eee26_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:e3c6e35aab5401f48d8e6c867692b4aacbe05a33748fdcbf83840689a39521e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a6ee3962bb6846e591065bddc2acf914d5048728534747e8dd8cc5c4f5918839_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:69c529b75d7ab8c920eb22c86fc400c7b94678808744fdfb56fa31702f309b71_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:925b8ead8e5260ed7f6fa46ffe4d07e7c646e42ac21af414e6de308c082d91d9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:de4106d4a3b7256395242b3aee01f4738febbd37ddd3b6253c1c3b2a59d1669c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:ee0b0585fc8f9decf11c0fb0fbcf76dae1400c484871f827b9625151a177075c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:395ab217ad32811c672eb7e19292b61b243cd92a356b880c19a72fb4e8d75fa7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:08e7b8fd2d452682cb268199a515252c71b94b71a960de4859109e8456155684_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:3ef12071ec1593ce3f0635df6fec2ef262c61c8c522bc3edc2b18d0c42c15c07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:96da7667e39837305b8312e36eb2c2e7ac656f56412c37c53d7ac89ea87ea9cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:f88b9694e9747f12e2891b35c065f163e76a8c102ca4f9f49c3429ddd7c570aa_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:1a4982644bf9a77620fc2c42eac567bd2b58e99c0c9edfdc6b2bc3183a181e93_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:d736b2a8185b5883af8c2a22efae106fda1e78357287372c3395212a2723f69a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:9098ad9d6b5aa177e16a59b9f240b0f63f0a2ed990bde697ea0c31bb96a2d61a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e598f2333d30c0018aa047621cddb3fe54bc7df8a0a5ac09bb5ced20a812e6a7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:4ce1d6fcf4681aa020ce6f69a9636302f666b1d81e6f39e730835e48f28ab02e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:6a2b202042078efcb131d2d3e063f1af42a5eaf10bcf4bc42514668040cb794f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:8b7e6429f416f3a8efc2214349e6ab18670fc11f9646232e5b8cd87ad1ec1b20_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:43da1f1b51ca3c5bcd546b163da00e6231f2cbf2f030dee4408de9a87f7f895e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:ce86635d3cfb4624d5c619e9cf2fb60cf61452320a13d2b0ce2440ef7ac4526a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:e6a5187097b281c872b8ae0394a8552084986e0b2e83330cf05f6b3dd5e8db2c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cli@sha256:1ef90887b458363e50fd741381f5c9a4df88ba49444ab0315e42c0f811f2265a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:4462c905f5a5097fd6d06a6cc23d958d49dfe7f269d17f02609472fcca44d144_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:0c3492a652ce96b5d485d12f6b5b8c2a296d198b884bc8ea016acd497477d6e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:530ada6ec36e70247a0c142657e95918204aeb85eeda2cae0050b981491c8c15_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:0c8f021642095b9156cada05c2a64a6c289fdf7f9b96b7fd3f3ee1ffb811b740_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:f6baa3213ed579b2510b671acba03f5013fca26082fcba2a0a6360f1d8852c19_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b3e64684f76cbfaad4d86e6620797e7f09932cc64ff020e11436d5915c9175c7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:b2fc553d9db722fe9f5ec51442dd15959caa154d570b0de0ab9697def8921c11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:e5e3b555024c8b32818204c41bfe09ecacd602bff51019d7440ee3b5cd475392_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:807959e97d3de605d3d8e0a0d20927ea885a8653367b139516b30bd6ed1c8a87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:f97d8c178b9c35964908c66685f22aff00be9076c5f2c0f6fa2338766c0b442f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:e452066e17ddff9f3e934fb0cd405925c4820f2bd5d71e636e02a7ca2ffcca11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:226fea2d77bb70049cf10c42464a5950759268f28a95529a14e9d6c8d71e95f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:0572d13411a0c3e2b387064f0f7871f5665dce458eefd602ff0dec6be2903a6d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:82dbab32d612cfe5ff90b85902270f1f4ace13ae2d449074717fffbe7b0ec9eb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:d2dee5cde0b739ae5fe6aee7e6d7b929d8213b7b5d44098008dc33aca8f64ad1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:67ff87e9611016321845f92031a2b123641ddef6af030e6df74dfaa0afc6da22_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:4fb694449c5215b607822c7a0516a4ee6e582beff23497fa966a51296c15fce0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b941e64c39ba567a4697da3923eed33b2fa2af246afd9262adc1a8fe333c1b9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:2889e44e16e4d39793e8f82fdeec18dd4e65f103c191fed73e6950eb2da8a23f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:e274c9fb2ff37e902ad958e1f372299efee8eb98d00f4b333bd0611917795c0f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2068cb8da6737309d290669c616147f24e0bad85dc324510b6b2055594069c34_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:1304f4176ee86758894b6ed7dd43d2afd04187b84839d604af0919db8469f0ce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:33cbdc986a6ff1fcf72c204c314109195befbbc0b9b93a27191161f58973c24f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:f8c4585b4238043e0a9c382422d85541358c1c15e7c60014a1f55c9b912dd4ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:604b57aacbd14b5eb211b3d07e5f9e2ca040e36149f4f499c56acd8b6b87030c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4f25c2d228a4558e4b85f6b44a0d5c868ff5702af90219805552bb41c14feb51_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ed2f273ad5146d335ca401b7e87c99f52e7ac105be2981a97a5939ac56a4fe21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:6a6bb13f64fb62fe0d8bf76d66942a9c4b6908d613ad74433b4fe972f068ac5e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:7b14e612289dbdcba85e806f2a759a5b0fb1f6321c65962723bcca0a715756db_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:c35ddbaf52100f7f5b261273f712ea15d83d461f83eaeb50fb95e2008a00cbce_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:e5ac73a2ca6e5d47f58c4c2ecc7d3f215ab1e5de9e598dbcacb7dcba6c3338f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:3262f734ac9bf9f73b2aa456e2f6317be7b3f15e84164fd39f327dc8e2525095_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:8a1746acb2fa48d4cf030e453dd2653b7a66e7f43c4e3e05c75bbda3df8242d3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:85b35899d4f3526ff97c7c282835d105a6d2c2eae4d20a372d38fec7fb4e9b6f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console-operator@sha256:2e9b9e92fdb56f55315cc3919c4a4591ff8950a2a0f6aa881583ff3b7ce2746c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-console@sha256:8af308bbbab33cd31d4e44c30ab9a466373abc39abd6f9b902a1acc889bef150_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:7ecb36e4cd94b0b0b5a3170715cf4281e1351ed37631e9e39563ea3f4a0fb116_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-coredns@sha256:c3d396c924321559e30ad57af070570f8fbc888045c821b76672d4b462b1757a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:ab27c0f47dab9adece182f9f7db228b125445d986e6c472e99e5b30629522ff3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:9a561274f378a903d8284de1f50b916e54b266f6b240af00cab5a9d7ce97e1c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:b642626ba0b4e141f350d2f5b3c4c730a9b004dcd899cd25465108b7b5873264_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:e4b0d2bd25d14b9e52cacd20ba0429182321ac6653969f8eac1a1ff5df5afd9d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ba47eb4ce7ea5582c7e16c05d426e3196b077ef2fc3338c9e8c95317bf75ff58_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:bae90a519dcc33f15cf953088d3e8036c8aaaebdb009959775db69267a6ef984_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:62822c6d990ebd5efde50e43586054470d7ec7e4a464093e7e0e711c551a4680_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:3583e56f86497fda0cedc8100770c6cba3142a2c94d20f46f83ab775558c9644_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:e1abf62208ec34ee147f3c694a93de05ae28eadb8264b309d3ace146383cea56_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:0cd6248a63819c1acad3deb94e53adebeb4c42497630e3f5292d843f6f447d04_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:e28cc55817e48ddbc0fda50e2c8158c41a0a5c0e8ea2129c3cd124dcc4360a90_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:860a0f7ed30884333716d4d1b722db538af28a82420fc558e998b541323593ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:48d12fd1b516becfc84df2567c22173dcf2e65716e6a79d8f4ec6f1044452bb4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:48a86224c2321b0df5d8c44fd80c74be3e5ed396ca8f5b00fafe2d2d307c1768_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-deployer@sha256:0d657f3057d644dca702933881b464473e937b3f8a8608b37330240c919f2dff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-builder@sha256:f97c607b96555c6946cb49b3775150c8afcb7637d3efd401a77bdf83b189d720_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-docker-registry@sha256:90af2d328cd106d10a3eb8002b119e30f71a4b3e5348696f31a6d94526ee894f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e765b7c2add7b7b2a9fbc84c0f703a8f3a9e7acc2ba1fa0c6f7815c43448c4c5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:0dcd0962c1652b24b2352c521b258d23a99fd0cf5f22bd5c4ddb7612057c3f87_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:5e4929d4d0a16f7d7f49b5746ab1686000193bb49284bdebc059674f626a64c1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:7ebfca680feabcfb685c45e078efdc676ac3e5cd6e383283841525a25fa5953d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:f634ae3015d0eb57e9a444bf037dd8d091fcfccd5960a7d35f803eb76a92d635_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-haproxy-router@sha256:159d25782ef347df5a96d50aca20c9bdcb4b83f0f28d0051545ad8b1e4f511d2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hyperkube@sha256:8884a458898344667d62de873fdec3c6a8fdf84fd1b88ad36b4b5040c019425f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:d58eec92df8b0d212285bbf43c92cc0b1918dd398db3c82b9325ac40aab88f76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f590c66de9bef54a88e31222d68288654c5eb79eaabfee9b3f74b66482616429_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59c3b54b2741daac009ae52f42de73bc2aa22c618dcfa3833480b5a2775241f5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:f25dc94395b3e58608ef15beecc2cd62eee223bc58234f23dace04c6f1047440_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:8cae83d0b4c22a2e56406cc893597f5fc8bd519b458fdda004d9c0e25a33ed27_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2fd468b3e7c472e32df40890d7f4bf68770701e0e7dc9d10d09c0772d4f05728_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:f28628e15c0ad8cb080676b0fa15330d4cd5b36897d691f6898875cce02590f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:b44af37f7e708dbe523bea7398296045ec9a8c135679a634df5b60d839038fa9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:7a854b1ceb5c3607e76fe21e71d3c2488dcdd923d5c769594cda0b43fa4961f6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:81a0605adfcdcf9054522c466cebeb10139eeaac0ebdf538c3c83b88cd5d37a4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-installer@sha256:f3aa4810fca2286e9fe11630b6c1240e09495eda69a66f7c0a3bff479a5bdb6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8e87e6265e1b760be58540d7f6a3050fd964b44267c6a111fa562938a885f887_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:044acd8a9131f782311f97ca00f84b01634de86794bcf62c14420ab8e1dcbd21_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a3f2eb5fa6fa405c4a05a55b35d55d5a2a866399ee1256368543ecd3f1845543_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:3ed67066d49b06f15a5229712186e103fded0cf818e9d5d4012a26f905fe8081_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:9c2b6d23a4a70716be5a1c5fa69e30f5ecdd860527a1587a7bff52ce4ab02e00_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:e9880f1fba74925437b7d5fee0457d13a55e82f49e52e9fc7053af0d5e275869_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-proxy@sha256:d9826a265ecb61bddba8b2e6e5fc6648802af228c7b67da2379bcca42db0d599_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:c8428adad685fcf82864636291ebb5f91173205a632b240e3ab3e1e8be34e769_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:0db42628ef42a5055dd9da995b2e76e9b95e63cfb956c32c8590f5da44abd864_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:478872e74bf296aa9acb8c636bb6e2126cd346eac269f8ece4666d90ac8da665_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:ca08bd931714a8a3c79f6cf5eb0067ab88a97f745c46131fd7bb012dc4b6f6ac_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:231c2b36807d5d68de0454d95c956fee37e482bd15542f05c94cd2e84e31bcc9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:a6e03d92e48a96dc15b0383033be842fc7452c8d691702c0c2ea62cc78cf5279_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:f65340096575e492861df5e5b7b29305099799e12c02c148d3d437c8485c5003_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:25ae63b104b45d6a0d2ab98e69861d7493fe637a0ebe5bc6939df9c3fe1860a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:fa8b27766c386f3b101df0226b8942ed57db81b9385f166a05db2638f7dd3149_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:4670d885b58ebc29d0f64f1b3aaa3de73b96ace1e4f7cd93bd6537cf7fdc9932_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:f59c6902ab2bbf05e22d920a7562b406d2b1be1446c9d631989472d358b6cf55_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:30c10f38c529ed57cb7412cabe05efc2aeb41bf980343df52c3fc07c04a843cb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:b0885b501bde597a5bba013a14162284a761ef7d7a490877c1f9dcd1f90a569b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:6c9fdd7c626e37d13cbfb46e5268c2f5ebe48a6f86b8b9fec836708920e7fc9b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:c54333f907b2d9c505f994ae1a22fb6794bf47b06de04fd16cee9fbfa8252e3f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-cni@sha256:f03acd61a9d8717029983e3079ce3daf63614006522b8b5f6c4209491a937884_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:5f1308b416df35fe35277a8f7754c8ec2e96759404589c1749ef12923e8dbbb2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:13fc244c3d291f749a9962633eb6357e495c638ea3ed4402f545ec25563c7df1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:7047bcf9b5bb68093f3db23063154de541473bc13bb207f863b7f78da69cbecc_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-must-gather@sha256:244967871f876013ae89564bd24b749cd8633a0da95ebbf1a0c394a5ad7e8805_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:5968b68bfadd486c0b66e42b4f34a41fa398e3b1a531673ca5746477578581e1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:d52ec922410584a88ed35e55995a9fe723876fef498f5f04aff46f768e68246b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:ac4326c029818fe4a17a342cee81c912db8065006986850564f5a8c5b8c538ad_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:240207baaa7583c376bf0ba3d6322e19cea76532db096416437c67cecadc33cd_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:19e0eb06e2f0512f70ddbbde27f5263662a6fb97f9616aa018653172ff5f6c4a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:b679952069c45bc53634ad09dcfa4e1080027a8d3b696e9f76d9a50855ed96a3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:0bf610b47e6d50ff1dfd6b0f2a8e964d6d26f4c61119426e8c0289ac43baed72_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:2956199bdf9763a460f0a33f9dacb7a2613ae95719ea23c005530d78880391c8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:9947ff2bba1a63a4b874f70ed10c86cc2f593feb4efe0e7cc6455f524e32a1a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:123148e2291df5c5f7796b152b1018917e5aa324efeba4da8298852c886d2a76_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:86ce3cc1bc4a3f6480b533270f6bafb2908bfe62a9e0cc566a03db4a9b021e98_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:bbcd5648f86554f221637decb2ed5955a16408ea8b2300aecbfca8fdfe0c9850_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:724c316efdbe4f1dde0bf4db37ba3331ceb94e848b742bf716f243f343fd7c3e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7caa90864da1ca2f0cf1a34c897e43337cbf7860b543e6406d0b7cf5f6a48102_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:ba7b6483b14b074efdee03093a36465149d0e582e5e0e91b2bdab756bbc1ecba_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:88c77c1108e51bc181ad34019a0c4cb6c59e88fcc56873e84bc5c76b330e7886_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-registry@sha256:054af3bb0135607f40ca83e3d08fd3577cee22c25b2d2fe008d92f7e02e36db8_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d8cf611de61c9a5d1d9d263eee4e864bde6d867be2d70f4f8b84f7293bb535c4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:da22b6295477d31e698b9f21130c803bd399879c0007c05e55217064119fb2f1_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:61aa55e0bc05ceb3e4c1a2c317bedefd9d543e4678f880578528d7ceded67f01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-pod@sha256:d9717c9445432c98c7637019c2251ca20fd1cc74d00c06187e04c1367cc44771_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:540c5bec2b978b0c7fa97aa8824bf387da4a9257f64522f1b0e3ed5156dc3f30_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:fd294fa5f6ac237a8b393776c6e3169b51edd6d8a0c0cba45bacad53d7c23eff_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:12c2a611208507d5d3420a077440c5f061155942706ead49984a2aae7b06a714_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:9a56e133a2461740b0280486def6633d976a033734dd5ce2a317383cba44585d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:05901390865fb765f71cb8e090262bde0108ed23056917ca433d1ae5bdea35c3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:fc59fad08c6ea0de12376da76a8e1dcecb37b3d55bb526cba8922b9d144ccd3c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:0d022dbb8d039538b70135565b2b0e2d41261f2968a80d88f9135fe751e9bfb7_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:5ccd062cb9ba493cab4f0cb308e80fd26385a0cd5a7961f74a68d51b21c45852_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d0a23eb16fb3ae471607616c6e5e39e913d99a065bcc7635b1407b73a7c12244_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:fea19035811e61e20d6db997a8f41bc3ae2b28a5d8371250bbd8b9263c03f111_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-prometheus@sha256:3ad6a674c0e7e989371b08084327c68ea2e0556bf32b4e4216a3b1facc8cb44d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:b2cc4fc27647e138575e15bce3778341fccb16eb25eb969be2a8f6e65e020ad3_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:19efc6c90e9356fbf65cb55079ddacc2fa82e2bd5973126da03d6a83d89026a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-telemeter@sha256:f9cba3a39f622d829481fd903b29f68664c38099e29ba0453a084145d7b374b0_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tests@sha256:3ea055454409d341fbcc770566db1d530ae2d16640273f3929e9933722f72d68_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:20d2510189694cf26c79614839516534bb4e42991b54ea377a9f9bea259a69b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:0a7be51e00b7cf15da8794ce9cee33bd0e3f6cbaf90b74bbd2d2610c1d051e07_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:ace9aa34b97e26c6a5f5d255e2e4ac08ebaf1586725ce2857b890517c80a9578_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:2260b8a6be5ecf92a1065f5cf78a100b275a1ad6404a13e985e00fd01e71445b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:809956534b4a3835681b672c741fe4d7b77ff705e55eee2e9d216ed5a7814845_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:9d79f37e48290798f385529c100099e4d24d8d4f69ed2e0f4295c3a427c8eeee_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:8f61a4b2e3f15c166e489fe8872a848e79ecdf52b438bf03557621300c1be58e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:966f583b602fdc69f1b9c394b908eb93050fc409d3da11cfdadc9e567885b9e6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:ddddb8726aecdfe72da3507b9134f08b5fd1f8f4a6b2dee5cb013bcd31cfa526_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:987909284b7d6cfc2eb5f5216c68b9d966b844ddd4c99ab24867e9f7ddcdb098_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:21692
Vulnerability from csaf_redhat - Published: 2026-06-04 15:15 - Updated: 2026-06-29 04:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_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 OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.13.67 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.13.\n\nRed Hat Product Security has rated this update as having a security impact of Low. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.13.67. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21691\n\nSecurity Fix(es):\n\nNone\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.13 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.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21692",
"url": "https://access.redhat.com/errata/RHSA-2026:21692"
},
{
"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_21692.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.13.67 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T04:50:07+00:00",
"generator": {
"date": "2026-06-29T04:50:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21692",
"initial_release_date": "2026-06-04T15:15:45+00:00",
"revision_history": [
{
"date": "2026-06-04T15:15:45+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T15:16:08+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:07+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.13",
"product": {
"name": "Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.13::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel8@sha256%3A1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel8\u0026tag=1779863354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy@sha256%3Ae21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy\u0026tag=1779889584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy@sha256%3Ae21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8\u0026tag=1779889584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1779889662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779863982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1779864319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3Af08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1779863941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni\u0026tag=1779863998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp@sha256%3A514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp\u0026tag=1779863999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779777713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779892323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779889676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3Adfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1779889656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779889816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779889601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779864290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779864042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3Aa069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779864254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Acf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1779889705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel8@sha256%3A51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8\u0026tag=1779863984"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel8-operator@sha256%3A8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator\u0026tag=1779863978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3A4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1779865273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1779889633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ac42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1778765667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Aee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1779864468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1779889608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8@sha256%3A518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel8\u0026tag=1779863422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8-operator@sha256%3Aea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator\u0026tag=1779889640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-operator\u0026tag=1779889587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1778765673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Aa38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779890779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3Af7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller\u0026tag=1779864006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon\u0026tag=1779889638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin\u0026tag=1779864038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3Ae33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator\u0026tag=1779889606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3A8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook\u0026tag=1779864381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3Af4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1779889652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Af4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1779889599"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64 as a component of Red Hat OpenShift Container Platform 4.13",
"product_id": "Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.13"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T15:15:45+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.13/html/release_notes\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21692"
},
{
"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.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_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-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.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T15:15:45+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.13/html/release_notes\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.13/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21692"
},
{
"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.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/frr-rhel8@sha256:1d98e37af9119927c9109ce0bcfc0846dc5097724475cd238a84279f10a89e11_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:8cf39a560a5634556cb90a0aac757f0b8e9c4659f3a40530499b83d7f12a2c1a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:ea401236f9095016e8bafd19b66822159a863651025f1c4eeb19c51c9307d141_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/metallb-rhel8@sha256:518a0fc8a9512e25d2efc450bca820d027b9c24c5179860f3306c5aa64e482a2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ansible-operator@sha256:11cfc983202c44d7aae4374a7e943a0a3885332b992cad4489364daf0b7f2ff2_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4a8381572ac578a7aa5c84d1bc302a13b86d17c4fbfa2c8a4e6c11b0bf18a77a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:1570690ed85daf96be33f6345e9d78bb72f1fa4afbea33a7f7948f875d075e32_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:e21dcb28b67252df45c0bff4d180a3c03a811516135d739552b8662fd76bdd62_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:973e4d63c0e42ca3160f5f45478ab2361043936a7d98b861da54710fdc779dd9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:5b6203e148957e6d4a4cc996e3ff3fbf72e49d42dbbdb9f293807babf0601f6e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:f08eed07c14665bfbf05ff3eb7a11007a03245a4623340c2b89a6df6db1998c6_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:85bb15771b64a83ece8a69a93ad039d03cdb7bc35e7d45ad927b9a34441fdaf9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c42a1e0af139d161af0f545e79ac8bd09c45de3bcf97675d5be294ccde5c265f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a457bdccd7a019189ee0f4500615daf2a38b9265b62b06386dbcab21e40142b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:53e5e8ba9cffb0b888445a1e44e1ae076efc58e2bd51166abf881f7e09d9ddc5_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-egress-router@sha256:353d073f4e0ae23c914bafcfabbf66b78b9c86fce092602d8d1eef1e8e584209_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:31247d24fee7047d82a8e98348fff86ff1b22f6e1378687ab3408bab065cce0a_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ee5ef59b6199d31330436a1d1cb317da5ffc16219d6b7637f0b7cfc9b94e2848_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-helm-operator@sha256:a069eef4c23f6ca775ad74ca76bd34fc67ab01bafadd92bff94942cc7faadca4_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:51eff0c396973b30abbb9e3963b621592130f764326c18cbd6e3c029b42d2b01_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:2aa837ae787dcc8b4d9cc7d1f572b5a07f58e2026c10a7d85adebcc27deea240_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ca376f567a41c90a23a09a92bfa6685dc42e9b195e37fa4c822b593a26f93f2e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:74578bdac61ddd2c10fe95f2cb306cd004dcebbc0d1c16be653810cb011b807e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dfd119bd7e1078beb2e9f777cb3740bc2098886a98a4ce9f45730850199ec2fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:cf858b4efe51671c626bcaab7ccbdd0617b7a18c55082c63bf2d76da1790736d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp-operator@sha256:769e9c9e2ac6e98c26a4b99eff00fc01a3dd6b0b936d977c2a3d37be33e0f015_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-ptp@sha256:514c754827b0d5c500f480765b3f6dd9a4f92f7b15d68c5a65b7cd4115eb4c73_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:f7b6b4912ee70d93bfa6719c423c5c60047a388bb8f119bb99897ce35b64a06d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:01f077da9d7dfe134f9a4551582221512521600d753f4e07cff772d77e81bd4f_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:40a90e313ae3a865320b981979e3785b81e6b18cfd0775e4adb74e50672ef624_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:2c7695b2ea4796259e63d0d4072adc5477861165d8f00decc43272fcd9a1778d_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e33b0048cc8a335767b14ce7d2f5cdc6e65e268dcaea2602f7017d3d8905909b_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:8954288ae27649364b7f16db48a65effffa32979425b3353cb4d1ea94dc1111c_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:f4c901bd53448622f183ffba1afc3cb4027ecc2442cc19f828843f78e22b780e_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:f4487a8a1167b9efb5ecc5ec8223bb09b9feb3af90c635b2a6060a9fcc7f22b9_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:02457089cfe6441f56663caa439ac01717ee6da974214cfa47de413ecfc949fb_amd64",
"Red Hat OpenShift Container Platform 4.13:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a38915f96ccbf46c341b7e22da4bc3763bc18e7733e4039ba8b3b7bc5c8cf63c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:21696
Vulnerability from csaf_redhat - Published: 2026-06-04 16:16 - Updated: 2026-06-29 04:50The 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 Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.12.91 is now available with updates to packages and images that fix several bugs and add enhancements.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.12.\n\nRed Hat Product Security has rated this update as having a security impact of Low. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.12.91. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:21694\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.12/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:21696",
"url": "https://access.redhat.com/errata/RHSA-2026:21696"
},
{
"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-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_21696.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.12.91 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:07+00:00",
"generator": {
"date": "2026-06-29T04:50:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21696",
"initial_release_date": "2026-06-04T16:16:51+00:00",
"revision_history": [
{
"date": "2026-06-04T16:16:51+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T16:17:30+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:07+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.12",
"product": {
"name": "Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.12::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler@sha256%3A63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler\u0026tag=1779275314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel8@sha256%3Ad5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8\u0026tag=1779276252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel8@sha256%3Ac10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8\u0026tag=1779344469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers@sha256%3A2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers\u0026tag=1779344426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel8@sha256%3A22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8\u0026tag=1779276143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel8-operator@sha256%3A09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator\u0026tag=1779344429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-operator@sha256%3A12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator\u0026tag=1779312988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-operator@sha256%3Aacb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator\u0026tag=1779276479"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-operator@sha256%3A510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator\u0026tag=1779919803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel8@sha256%3A12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8\u0026tag=1779276233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-operator@sha256%3Af720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator\u0026tag=1779276745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-operator@sha256%3A59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator\u0026tag=1779344444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader@sha256%3Aef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader\u0026tag=1779276656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns@sha256%3Aa4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns\u0026tag=1779276443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher@sha256%3A69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher\u0026tag=1779276122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher@sha256%3A69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8\u0026tag=1779276122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8@sha256%3Aeb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8\u0026tag=1779344444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel8-operator@sha256%3Af9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator\u0026tag=1779344463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel8@sha256%3A68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8\u0026tag=1779344430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe\u0026tag=1779312894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe@sha256%3A7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8\u0026tag=1779312894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3Abfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar\u0026tag=1779276155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar@sha256%3Abfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8\u0026tag=1779276155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner\u0026tag=1779344463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner@sha256%3A9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8\u0026tag=1779344463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel8@sha256%3A8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8\u0026tag=1779312938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel8@sha256%3A8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel8\u0026tag=1779919789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel8@sha256%3A2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8\u0026tag=1779312941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy@sha256%3A2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy\u0026tag=1779275307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager@sha256%3Af8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager\u0026tag=1779275362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter@sha256%3A9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter\u0026tag=1779275344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus@sha256%3A17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus\u0026tag=1779275343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel8@sha256%3A3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8\u0026tag=1779344494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-node-label-updater-rhel8@sha256%3A5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8\u0026tag=1779276141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779889698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779889674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ac137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779889773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Acfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779889672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy@sha256%3A84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy\u0026tag=1779276489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy@sha256%3A59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy\u0026tag=1779344440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics@sha256%3Acab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics\u0026tag=1779276135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kuryr-cni-rhel8@sha256%3A65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8\u0026tag=1779919772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kuryr-controller-rhel8@sha256%3Ae292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8\u0026tag=1779919731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace@sha256%3A5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace\u0026tag=1779344427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni@sha256%3Ad6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni\u0026tag=1779276640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel8@sha256%3Adf1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8\u0026tag=1779276035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel8@sha256%3A57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8\u0026tag=1779344423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel8@sha256%3A378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8\u0026tag=1779344674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder@sha256%3Ace6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder\u0026tag=1779919805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli@sha256%3Aa8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli\u0026tag=1779344463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console@sha256%3Aee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console\u0026tag=1779401482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-operator@sha256%3A48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-operator\u0026tag=1779803156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer@sha256%3A1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer\u0026tag=1779345022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router@sha256%3Adb802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router\u0026tag=1779278404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube@sha256%3Aef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube\u0026tag=1779276948"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover@sha256%3Acd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover\u0026tag=1779276241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod@sha256%3A704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod\u0026tag=1779313031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry@sha256%3Ad0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry\u0026tag=1779276080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests@sha256%3A3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests\u0026tag=1779345649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel8@sha256%3A41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8\u0026tag=1779312923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager@sha256%3A7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager\u0026tag=1779276629"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry@sha256%3A0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry\u0026tag=1779276689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel8@sha256%3A436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8\u0026tag=1779345131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel8@sha256%3A080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8\u0026tag=1779345085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel8@sha256%3Ab705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8\u0026tag=1779919802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel8@sha256%3A88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8\u0026tag=1779312992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-controller-manager-rhel8@sha256%3A8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8\u0026tag=1779344444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-cloud-csi-driver-container-rhel8@sha256%3A0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8\u0026tag=1779312992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256%3Aa8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8\u0026tag=1779344453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-alibaba-machine-controllers-rhel8@sha256%3A75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8\u0026tag=1779276324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel8@sha256%3Ae6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8\u0026tag=1779312918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel8@sha256%3Aaab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8\u0026tag=1779344447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel8@sha256%3Ac4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8\u0026tag=1779344659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel8@sha256%3A2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8\u0026tag=1779344493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel8-operator@sha256%3A6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator\u0026tag=1779276691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel8@sha256%3Aa67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8\u0026tag=1779276099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel8@sha256%3A4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8\u0026tag=1779344485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel8@sha256%3A147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8\u0026tag=1779344482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel8@sha256%3Af5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8\u0026tag=1779276481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8@sha256%3A8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8\u0026tag=1779276724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Af5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer\u0026tag=1779276528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel8-operator@sha256%3A13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator\u0026tag=1779276206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel8@sha256%3Aaa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8\u0026tag=1779920169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel8-operator@sha256%3A404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator\u0026tag=1779276432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts@sha256%3Af2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts\u0026tag=1779345186"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-operator@sha256%3A0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator\u0026tag=1779276116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel8@sha256%3A1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8\u0026tag=1779276171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel8@sha256%3Af175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8\u0026tag=1779276344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-operator@sha256%3Aae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator\u0026tag=1779312973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-operator@sha256%3A27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator\u0026tag=1779344422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel8@sha256%3A37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8\u0026tag=1779344447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap@sha256%3A764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap\u0026tag=1779276132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-operator-container-rhel8@sha256%3A49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8\u0026tag=1779312992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-operator-container-rhel8@sha256%3A49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator\u0026tag=1779312992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-operator-rhel8@sha256%3A111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8\u0026tag=1779276112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-operator@sha256%3Ab391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator\u0026tag=1779344447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-operator-rhel8@sha256%3Abb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8\u0026tag=1779276838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256%3A6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator\u0026tag=1779344422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-operator@sha256%3Ac3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator\u0026tag=1779312894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-operator@sha256%3A6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator\u0026tag=1779276077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-operator@sha256%3Ab25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator\u0026tag=1779344525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-operator@sha256%3Ad1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator\u0026tag=1779276456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel8-operator@sha256%3A827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator\u0026tag=1779312938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-operator@sha256%3Ab0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator\u0026tag=1779344478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-operator@sha256%3A6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator\u0026tag=1779344459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256%3Ac5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator\u0026tag=1779344452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver@sha256%3Ad761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver\u0026tag=1779312990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-operator@sha256%3A4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator\u0026tag=1779312987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-operator@sha256%3A8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator\u0026tag=1779344419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8-operator@sha256%3Ada09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator\u0026tag=1779277201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-platform-operators-manager-rhel8@sha256%3A538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8\u0026tag=1779276823"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-operator@sha256%3Af18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator\u0026tag=1779275309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys@sha256%3Af139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys\u0026tag=1779276009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel8@sha256%3A9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8\u0026tag=1779344457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-rhel8@sha256%3Afe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8\u0026tag=1779312933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-operator-rhel8@sha256%3A022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8\u0026tag=1779344610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-webhook-rhel8@sha256%3A77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8\u0026tag=1779344437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer@sha256%3Af5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8\u0026tag=1779276528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter@sha256%3A3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter\u0026tag=1779312935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter@sha256%3A3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8\u0026tag=1779312935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller@sha256%3A3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller\u0026tag=1779344425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller@sha256%3A3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8\u0026tag=1779344425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd@sha256%3A21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd\u0026tag=1779312950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel8@sha256%3A2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8\u0026tag=1779312960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel8@sha256%3Aae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8\u0026tag=1779344561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel8@sha256%3Ac864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8\u0026tag=1779276684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel8@sha256%3Aa75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8\u0026tag=1779344476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel8@sha256%3A5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8\u0026tag=1779276116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel8@sha256%3A26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8\u0026tag=1779276815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256%3A7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8\u0026tag=1779344468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel8@sha256%3A48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8\u0026tag=1779344525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel8@sha256%3A73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8\u0026tag=1779344485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel8@sha256%3A502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8\u0026tag=1779344482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel8-operator@sha256%3A80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator\u0026tag=1779276187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer@sha256%3A9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer\u0026tag=1779276490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts@sha256%3A2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts\u0026tag=1779279170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel8@sha256%3A4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8\u0026tag=1779312928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel8@sha256%3A16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8\u0026tag=1779344476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel8@sha256%3A7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8\u0026tag=1779312920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers@sha256%3Ac0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers\u0026tag=1779919775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-operator@sha256%3Af55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-operator\u0026tag=1779344479"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel8@sha256%3Af02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8\u0026tag=1779312940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel8@sha256%3A99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8\u0026tag=1779312978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel8@sha256%3A8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8\u0026tag=1779276452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel8@sha256%3A0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8\u0026tag=1779312891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-operator@sha256%3A321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-operator\u0026tag=1779312983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel8@sha256%3A60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8\u0026tag=1779278787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller@sha256%3A8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller\u0026tag=1779276008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel8@sha256%3A03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8\u0026tag=1779275343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel8@sha256%3A2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8\u0026tag=1779275299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather@sha256%3A8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather\u0026tag=1779345057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel8@sha256%3A4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8\u0026tag=1779276318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel8@sha256%3A94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8\u0026tag=1779312900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel8@sha256%3Ae1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel8\u0026tag=1779345727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel8@sha256%3A1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8\u0026tag=1779277202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel8@sha256%3Ae6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8\u0026tag=1779344514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-rukpak-rhel8@sha256%3Ae840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8\u0026tag=1779344645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel8@sha256%3A2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8\u0026tag=1779312986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel8@sha256%3Ac77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8\u0026tag=1779344432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8@sha256%3A51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8\u0026tag=1779276760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel8-operator@sha256%3A9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator\u0026tag=1779344428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel8@sha256%3Af262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8\u0026tag=1779276685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-machine-controllers@sha256%3A9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers\u0026tag=1779312906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel8@sha256%3A552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8\u0026tag=1779344447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovirt-machine-controllers-rhel8@sha256%3A4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8\u0026tag=1779312895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes@sha256%3A92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes\u0026tag=1779345095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel8@sha256%3Ae49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8\u0026tag=1779276110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-operator-rhel8@sha256%3A8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8\u0026tag=1779276215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel8@sha256%3Af78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8\u0026tag=1779276124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel8@sha256%3Ac6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8\u0026tag=1779276440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-k8s-prometheus-adapter@sha256%3A98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter\u0026tag=1779276839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel8@sha256%3Af77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8\u0026tag=1779276750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sdn-rhel8@sha256%3A571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8\u0026tag=1779344506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-operator@sha256%3Aa18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-operator\u0026tag=1779344432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel8@sha256%3A487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel8\u0026tag=1779345059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel8@sha256%3A0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8\u0026tag=1779276737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel8@sha256%3A0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8\u0026tag=1779276737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3A997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8\u0026tag=1779344520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256%3A997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8\u0026tag=1779344520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel8@sha256%3A85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8\u0026tag=1779312967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel8@sha256%3A4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8\u0026tag=1779312906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel8@sha256%3Ad51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8\u0026tag=1779278798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy@sha256%3A0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy\u0026tag=1779275307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader@sha256%3A040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader\u0026tag=1779312925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator@sha256%3Aafa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator\u0026tag=1779344495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel8@sha256%3A783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8\u0026tag=1779344478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter@sha256%3A5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter\u0026tag=1779276441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel8@sha256%3A30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8\u0026tag=1779344575"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel8@sha256%3A32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8\u0026tag=1779312981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel8@sha256%3A3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8\u0026tag=1779312995"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
}
]
},
"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 OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_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 OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:16:51+00:00",
"details": "For OpenShift Container Platform 4.12 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:3701cb0c9cd5c3123709a9ec33af15b4c6fe414f62b316a27cbbc07f5857a869\n\nAll OpenShift Container Platform 4.12 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21696"
},
{
"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.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T16:16:51+00:00",
"details": "For OpenShift Container Platform 4.12 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html/release_notes\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64 architecture. The image digest may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\n The sha value for the release is as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:3701cb0c9cd5c3123709a9ec33af15b4c6fe414f62b316a27cbbc07f5857a869\n\nAll OpenShift Container Platform 4.12 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21696"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-network-config-controller-rhel8@sha256:1fdeeb53fee4b04446b14041e88e1c2b29fac7a5c19f0ad71f995f3a40318a81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/driver-toolkit-rhel8@sha256:8fd045d00cd452ea92d199692aee218bb574632af0725f37c30bf4dec0336915_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/egress-router-cni-rhel8@sha256:2f8bebbaf30ec2895f6334d40e164e60d9e89e437b2411ad3eb4c485a23b8706_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8@sha256:7051fe678bef8ea8debccf66615017ce6a6086124b3f6cd06df98074d5b9edec_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/network-tools-rhel8@sha256:e1dfe5c980e4f70ee70dd5c24fe9b1d6335efaeef4960c78315201955ae1f301_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/oc-mirror-plugin-rhel8@sha256:378f5c354e1ac5bc09218e55ea0e702da9c2b30f37bb979bd814131ebe58a434_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8@sha256:f77eae9606aebe9122b74070da6803ddc393fd421ca420522800f7291aafb198_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8@sha256:436c15569c5fbe212d042dbc754e82596cb2445f332f3cccb4eac0106679bb84_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8@sha256:080029904a966858341231a9887672d50092e1e04578ff2444849f73763885ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8@sha256:b705a16fab2fc904c0fbe222a6c231e2d4851523bc71626a29d3d3e3a0c5073f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88eb613ca6786fbdbb5a0a7cb53727c6fe39ee0368454f1fccfd2751b204e443_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:8671118afdb7df75810ec1ca057a4f79bf0d11bfde627c7d974eb32280587ef3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:0d6e9dde5ab95ccedba48b19b7acbc4f80f293322d8d5d7836add6c007ec99f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:a8171ad440310bd5067ef1ea4b41cb7c63dcf4ba6833ab3f48617c77fb174ab6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8@sha256:75a0f83d19775b8a585764d11d451c1198f23a2ea458e91b3e835ad6886cb47b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8@sha256:e6f50a3787ec4919e98f3efed5a2f37be214898d212a099fec8347b44d8c956b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:aab66f954360604cab9c154d3a1eac790ccb17c8249aed0aa36d2d40df1e5c7e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:c4a440366e612f353a6c13c234d3f0dce5f67467e2960d449bb8ea65ac6d8324_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:6db401317fcba5f7bf78d66665999ace0a4a6b4c3b63b9db2aaab41afb4c542c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:2f84c6697edb275c1c677f2e2e20b27c1ee4e5332a7033d22ced0058602117b1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:a67a08fa9c4f01112384d38f33be25ac7f1bd697634d0790e2977cddecb511cc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:4fdd933cb9da64acd56226c15ce011e46fd0090aed5b3e6315a01bf0162300d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8@sha256:147452607a8cd38093e52b2c5417ad695385b33bd3cf9a3261fb31f31c642f74_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:f5d38d22c13f1257d969db64b7d65435a2c0919fba1251ceddd4b993ab275590_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:13ea4c117bb46fb5b78ce27910cbaa8b2a7d444c41959a54ca6aeaf97416eee7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8@sha256:8acd83535f7516e6a2fc73c131018a643d85e72a2a9fbbbcc4e082c805d5cc50_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:c10f6a7bae004d3f4b5e09179cc87b2cfe7b323ad0e3bb7ef03f549dd3d139a7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8@sha256:d5f5879b0a0f59b59b8ce9105b823c9f711733af333931fd98719b7d9f44b2ac_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-installer-rhel8@sha256:aa9f67b9a5400f19d078b1b13cdf4d132a0071fc66e8a5c57c4e9014bb32e8c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-machine-controllers@sha256:2a9214928b70ee99b097260d6272bf92559754abec939db3e4a99e9d72ef1e82_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-rhel8-operator@sha256:404bf28a268016c6d73f798e2c1fcc7fe9e02cdcb6ab9742808801e0cc39c720_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8@sha256:22fdee807ef095f6d35808abaf1f64aca582503edca299e08874551be7a3ac8e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli-artifacts@sha256:f2dc10a4a580f07ade7fbcd53732d188878084ad01881d11cb2cad283be2ebd3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cli@sha256:a8a99c22b9de95868d1578467d3e21ddb5a061a80a4a3aba64f381ec0780ee30_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-credential-operator@sha256:0c3379a1c41b507427a9a9e86bf633c783e932951aec40aeef1b969293e3cd56_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-api-rhel8@sha256:f175f3a8b77021529a0461e23e9bf6c11040c33131e58a45207e76b85c8a2ef6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-authentication-operator@sha256:ae4b9b1ae53cf605c1ad733aea4871cdd265ed970115709d374ff2439ec38d1c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler-operator@sha256:27c5100fc18f09da889a33ed02c9e22ce1441b089f49ff87dd9b36d6ab030523_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-autoscaler@sha256:63c00f67d830ee2a03b42d126b3931b7ac4c0db80367d8497ede5ab7d97892c1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8@sha256:37e851d3a51c9bea08d620367feb27ea56516bc5271a1df4dcbc23435a523e27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-bootstrap@sha256:764ef8a3cf3e6e85718fe7d1845d60ac16d04b7ae9c68f7bad2119619a8bd093_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator@sha256:49e2382121e7b29c07a17aac3be94f383b8b635adfc5983c001144bbba569be1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:111aa2e93746799435c4d64d48c36e40374aa3e9e8cd8698fa7cc5b10f026d9c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-config-operator@sha256:b391adf32537085834d0180f360763cb62efbd931a74707e8f68caf717bcf526_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bb220c069b521ca0f30b3f7f31a10fd5d4234949b6b6891376b4eaed34ca8077_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6bbeccf76ec91f80110c7bc2fb19361cba971809e73c5005bc5bf79d5eb33348_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-dns-operator@sha256:c3c18d102bb933276643bc8cb05e46c63ecdb966544911a42b5a5979cc7dfab4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator@sha256:09d64688a0d5d3cbe80bea3f4c417462b0b3c2d9ceaeaacd125077157080ed0c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-image-registry-operator@sha256:6d6430236ce66be3f3b2d11a6291da2aa6601ff231933363e5673b4a7f956030_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-ingress-operator@sha256:b25e2465d4f2c903c6deb818cc0f9454569635bb03efb7ac57cc9537ad41f853_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator@sha256:d1a853d196a7377d1d488375a5d33208bf257e6cb7d538bf332e44fdcd9d8e6e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:827cf26b9f51a4864952ce040ab0a4826ff552cc82e23c56db8f62a93f1ecc18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator@sha256:b0a80980369ee5282e2e4ef1e73c51c1c0e59efc891da618efe4e5594963c107_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator@sha256:6db24ab8548aa29e652cc2245248bf192b605d32ca9a2ebef590ab8826f643d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c5ec8910094d01e7021d028191c79c3164feff7d6107d0bde68910f707abeb92_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-machine-approver@sha256:d761f1a52ad03757217e5967313f899019719b18b1763fbf8577975133374575_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-monitoring-operator@sha256:12fbe02148387ef26119a39fd03f9531bf420d967aceabaa83ae64913579926b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-network-operator@sha256:acb6f5ff8d5982f321de7d78c8454515d993e1e6320abb691885b3dc8636ad21_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-node-tuning-operator@sha256:510304ab07cbf2901fb45b5e1826721cb73682bc6435f2180c5962a112b3bf44_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator@sha256:4ee6a2bb4a4c31df8641a96aa3d20585255fcb1df223934aea095e71e2bd83cd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c76d59c579cd55b20574badc3a1a0c1f6e6a95abc891fb5e2f6d661984136e8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:538f273be8fe8eb68a8bb354c50091505260f165f9d1449bd869d31414857ee4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8@sha256:12cf4c3936a6f53c4b10799599363200ce190229efdca4d5f989a308e00d34d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-samples-operator@sha256:f18d13d03b0b48bea33974137250deceb21d1640197dc871f91e2d40b12192ee_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-storage-operator@sha256:f720ea8c731db731ef14b9b275dd87e5186bd6d3fd1959307bb8e7081c756959_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-update-keys@sha256:f139f63eca5c0a18977c5361f5f98d0bd063efe381e2cf7f27d2c4bcfac5277d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-version-operator@sha256:59b9fcec6ee4e2ac6e40c4521593dd133fe8d9a412b203bd2a76371a7169128d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-configmap-reloader@sha256:ef93e8b3cb8c28d6643d51fea2d219a5b92e724e56d7f8175c316dcb24d65cd1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console-operator@sha256:48cf512d8597285e9ee3dd87f9c1d9161dd56ac84416996a3ef31eb91c0eaa57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-console@sha256:ee5927fe5c64b6e3a8697d4d1367597d782bbbc019106ff6512f5327b5078fbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8@sha256:9acd6d0c295912c37b4dc9ec01d028ae7b3838989e4772d8b3dfb0bf162bbd27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-coredns@sha256:a4d8305ceee4f0e68c21332aeaebb61e4a70fd355576c6832f503d426e675501_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator@sha256:f9cd10b22a89d5a9ca136b1ad9518b24dbf344f8208c6242a827dafc6d78d402_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8@sha256:eb5669b04338f67d19f7944fd287f1fce4651c52527ef299858cc94cb8dc0159_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8@sha256:68d01a85aa5e0b8e41db8c4c8ac2cb61effe964250dc0b5255b7231ce26b2e11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:022379acd74daf52d70449238bfc31057dcdea6a166798b46bf01b4ef0ab3c01_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe0872a22488c572fb6edb06af49c9cd5e1de9d31cb09b31095ab2726933204e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:77e88340e9b7fa90a42436843c101c3c5ec235ea7a79f74facd1003143e9cca9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:69f63db89a91afc61c68d2f686bc8719a824cb923b03c32fdf73537a94144fc6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-provisioner@sha256:9bcb303c041e573232d91bed5cb02aa105878e5dde3c90f37d9b96428990d993_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-resizer@sha256:f5dcc42c94aa60a86306c5beaf47d9aa705e86589a3f21ae63e2dd9511bb4bbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-external-snapshotter@sha256:3c44a8bd43c992651b89cae43afeafb461d05093813415aea5b98380bd4c6750_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-livenessprobe@sha256:7b3dc31ea662f4a7ed6b140448c9a11a29b08adb119b40963dccf0e8ae665737_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-node-driver-registrar@sha256:bfe935c282742c63271c9bcb56a1cae05cef21938244453b625d0150f83e86ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-controller@sha256:3234d183c502f67ec84272c7d0d1f2a11db6e495ee97132b37c63643b82a4090_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:8f37096d7d4883d5378d6e58ffa34a18db35b222840e5cab3d8030ef8a2dcadc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-deployer@sha256:1d91e78e5e68179dd12f218119a8a1027cc3e0a04ae27237694423c0974ae783_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-builder@sha256:ce6130bf85487d18cf5f13891bf29c75c9cc946ac6b24846966e8c3fe324cfcb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-docker-registry@sha256:d0f872916d2d5d7cfe4ceede96708f55e9a2490344f9ceda6264b4756c18fb6c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-etcd@sha256:21f77e0ba8254642d6f7857162f68d4fb73983015fff87c3eddc42767ab55c57_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:2f26ffffa13696c7e1368cf22e980bb9502bff37e4af0cde3bb875d9d4441589_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:ae370200c2746cd071db7979ba882af0e6ec870b9104d4db2b354751dd1f76d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:a75ee75ac32799283d733d1ed311debeeb3acac7841d43bbbdc8a5a56856f887_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c864879d2fdc49d940e93c7efbf91d2f5fe48d62d2fb1c5d8b504819d17555c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-haproxy-router@sha256:db802f87a9be8e26910ef9e32ed142467d801cdf53c184191a689d5f00bfb3f8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hyperkube@sha256:ef27df3f99f1f82fa20deb91a4a58be79d18c69284fa1b8eee83d1da91f86c5f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-hypershift-rhel8@sha256:3c1f7aa3e43df082e2a029618002b333210ac9becb96a877887866d867acdfbe_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:5b50b33e23d9920b27e8c8c4f57b8ca19103b039c7a550fb7b9d6ca5b9150515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:7d694c6a3d264c7d9920893f7d9097a01132a91c7b12bbe5b677aad8fd7ac4b8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:26d466541e637f0c6e576bfa08190f31687541109e58607b82d7ac14ab8642a8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5ea0af4fef825d00cba5618579b878e3533f2df5c9e1774f842d58a3a784382e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:48cb8b652347abbed7bb86ae3f805d7f9eb2a49d3cca2c612e1126b8835d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:73bb815690c10d9de499097f3a35cdd9262b7c0cda04423d4e8810a23e58ed5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-image-customization-controller-rhel8@sha256:502acd216848d9267188ad49eabd8dd3881a5ec357e3a6da2a3e9dd7b52b5005_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-insights-rhel8-operator@sha256:80a6b3c4b8105b1a0aeeac1e75f2e005989ece9e936ff6f48474516719349a33_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer-artifacts@sha256:2a262d96a514e113707713164cd71a414bdfa151ac62e534ee3d8e039a2c8ea8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-installer@sha256:9668e8cfdcb2ea39bbce8dc2957726222679a82751a8cfa3ca9cc1929f9ffc36_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:77f17e646b8e887a8040e2653a00763c1b782aeaa15d0d3f9ceff45edca7e283_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c137997666f4e746f52933c774070d081ea4e7bbebed48e2e1c5dfa30dfe6111_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2d6f8e2cc2abd8e26d0110ef97fd589b56196fb87486e16e65cedf75a05d019a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:cfc0473a81f687ba5631fa0af8f74ca1a13af25ba77ed8645ecc99e7f23ddc3c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-k8s-prometheus-adapter@sha256:98c55660028b5cae876b9c10af0f969d9b0e8164d438c193172109d2125e35b3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-keepalived-ipfailover@sha256:cd62a53b4f531f842bf9b5dd9254ecc703a39e12f08de0d35809277f73602ae7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-proxy@sha256:84433dc22ca3fbf465ab0ea4aa8f011c55a1aeffc40127a3e70637536ad5375c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:59fafc9b1fd942ad5abb8cd2ef7cc273503e91a733b1feef65e131f91a2ab051_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-state-metrics@sha256:cab048d02858152cc5e87781cb0592e2c40629f987009bbc42638dafd2f2310f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ca3bb6ae2230c11063f6282aac630055422e6fa61d1e59a270cffa5ae37fa8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:16b261488403e4dbd1b96bfaf8576081d2402c255b0a0bba4827e4b30c553042_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-cni-rhel8@sha256:65933f0a21ebc73a52bda0f5b847879bc011cfa20668172be20ff0047735f7ce_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kuryr-controller-rhel8@sha256:e292dfd6c75cf80ba9f5cd19957de9cc7027584494f5fbe4e27c0a90cdf71809_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-libvirt-machine-controllers@sha256:c0b404e457c68cea6c5c2b12bdae32b327fb494eba9056d75e639b62e3ccfa59_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-operator@sha256:f55db59b7fd011c51622cb7186a3a80b30e1434e1f14a1354ab417922a7c6d07_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8@sha256:f02185cc5161712bfcb806477eec144a2a24fed7ea68c5a23b66b13809bf774c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8@sha256:99b588dcf69ad0c65acaf7cb183f43159515bd3b1494f9eb2dc1690b8c8eeb61_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8@sha256:8a853ffb60efec50d4714febd3e7780331f4fc0c8aaf3eedc0fa9cfbd8028c47_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a2c6de4e08de24da7f3c852a2bb5a0e9f26f7753e56aa58f8b24a0c480c9a8c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-config-operator@sha256:321a89c47241523da5ad3b67e73f332b39a216c0be0c7f975cb0ef2f9da36d00_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-machine-os-images-rhel8@sha256:60e365fb7dcfa66d0b375fcdac3fc9d8d649af1cf299a831333bc1c6e2d28a9f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-admission-controller@sha256:8bc77b78e71c7ae4600865478b4d0049cd4ecd40ccd1e25e9fb63311e1c2939e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-cni@sha256:d6e4ca724977bec80ab33b59a59fecb2e1e3ad3015264da1f24206634c85c6db_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8@sha256:df1f0484ba964b54c921469b72fb4a7abede86af7f1dc7f710f8fda202289511_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8@sha256:03ef6823f99e5391fd64d880b0359014d0ebffdc9895287f0ecf5bdf484084fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:2eabccdbd0c3c0df181248f51eb249a3611704ffacbc12975c9b32e34fb9ce27_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-must-gather@sha256:8c15b0ca8f73bb8615b1b4ba81ee904a2651d70aca36d002f90bd0580d9332d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8@sha256:4e653a12e7db3f40a15078739435bb09cfe99e176254810fcc2000b7d5ee25b5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8@sha256:94fa1a1cd1c4ab4944decc24d054671c3a09b41acbc19e2ed707f169f57fbf28_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8@sha256:1567fedd739763f9bf94cc4b41deab888e395c5c69ffbbdc478198e0a2a85cb1_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8@sha256:e6a0371c992f318a5744e3b567bff5965cd3c6f7f109db20a533c9105dc9cac9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-proxy@sha256:2481d77652da9a3c87cd3e542b6679069c6dfd8d078bcd5bb3f3ecf3ce164f0a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-oauth-server-rhel8@sha256:57b9400b2efa03fb246b9b7c1cc2f14032177eb218253add872789bdc85fdb4d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-olm-rukpak-rhel8@sha256:e840eab17a51073ac7a7f6acba82c4217728d605ac9ae57f5f0db7cc82b476b4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8@sha256:2fad658b34df66b1f3fc147b0a8c7e7dd2b3f702a9e8f485cbf005ffae836458_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8@sha256:c77c2f41d8f4ba80017d39325bfa99b3e4cce2c7cfe1bfe4a2c67e4a1de006da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8@sha256:41060780d093094ecb886101b7a0b603d1efcc7a0e8724046f1dae206d42172b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:9d72f7d7b03c560dd4391fcca0ef66ef654151df9791e4fc8a0a2747608cfa24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:51a5bcd1d42590fddbab824eed4c801f65f2538eb918d2a499b416ee68d8d2d8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:f262fb1743d69265ba903eb3985eea6df063a5736db16982a9446773946482ba_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-openstack-machine-controllers@sha256:9cbc5f388a732e60e5b044a35abe1795418c59af479ff0adfb4c84e89d91e302_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-lifecycle-manager@sha256:7335405a52bb9e4c92cf36af4c266108c658e42b79235308e7637617ff43d40e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-marketplace@sha256:5a460cd170a13635a782871bd6e03aa365d726f8a0e5bcaf514e24f01ec58ee8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-registry@sha256:0b573ce1d04df1cfb3bef2be8f6bba53c82a544b9f0d78ce62e1f66787848c5c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8@sha256:4d1de4075c6b0d736865845a851f3d7f312e15ae7f0815cd307328eac005c4d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:d51b7c0c73264b41c2ba39d1d0cc87aa3f9f3fb7867bdf58a54c7e8ec77dcb2f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ovn-kubernetes@sha256:92bbd37770ef0c1897a9207011a55bbd0a67569136bb1c3404019fa710a9fe11_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-pod@sha256:704582f03cf1556983d2ce9c6cf0be1ddc9b5d0711c92d46d2990ea8ea1438ae_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:8c8abd6d814f8a47be0d9837831b7f86918052127b78fbea7b7a2518e8780cf0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8@sha256:e49b183279134dfa57e7a8fd9efcd7c9a59b0dfa62af2db0e34ebdff80aa3842_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f78f863c99ad79e7994d2e328dc5f00d3455a45480bbb688b5c1ac1c49b5bd60_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8@sha256:c6c22347deec8e642fd6ea591c87e90bcde2f8ee8be875398776287e8fbd7057_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prom-label-proxy@sha256:0ce388ce7c4a948ff3df46a41b28d25618c4f01a3c401d3d42b806bd08c76038_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-alertmanager@sha256:f8f4ec147e431fcecab3ad481476952ab3de52f69ec5f4f65f64f1f050c0ae4c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-config-reloader@sha256:040f209d54440d70a88a216ab423de6724e2d5c6de4efd78dbaca112ed4d441e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-node-exporter@sha256:9b85dbc1ed7f9c8e3cfb385ae5deb3ebfd73e0624f5338db20fbc1cd93b9bc81_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:783dd70962c557da4814f400269deafd64071df945d8935655d126c6469141c8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus-operator@sha256:afa4423cdf4be2b4b34a10e4d2a5c8b869812b22e5cd97e8c984b70319ae91ed_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-prometheus@sha256:17c339b79a6102678e1fd532d4007977be41bf07c328644c247f49f20e149855_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sdn-rhel8@sha256:571fa683f07a2a2c10ba7f1de1709625ae8718517dfde705211c7fb939eb3e10_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-service-ca-operator@sha256:a18548d9496fc16f0beef19d8b1e3bb4b2a99c3acdf461241bf878c1ec6e0344_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-telemeter@sha256:5ec40981d62c1aea9e7b75cbdae1e2a170baa490da9daf2433ba462b0a80bdc8_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tests@sha256:3b2c1dd1c88a1e7f2ef65fa12fdbb2cd94adc268262e7f354e7a21ef923909de_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-thanos-rhel8@sha256:30390119b08ddfc05dbf38457b2341aab01428bdf46be50a35a80a444756f694_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-tools-rhel8@sha256:487b968d84d211bdeb4a1d1b5b4e05e997df6f6c525a7df74f829ae2ea43a05e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:85089ace59ab2f630d2a7c1ac578ba878b73506c2daa16c3626a5cf5b6df5786_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:4e89bc4b8fbcdc833fb718cd1db3fd7086bd94a2c66e7bbd0c95ee5ab10fcd38_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:997fc4d810348af19fbbe02b59ec2f33b8bc98081e3254ecd1893dbf9a577618_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8@sha256:0da68772e5e3b260246cd64602627d5897d142f1559f97ec50f3588b735b75e0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:32d4b9d6d026d0234204c91420251bc1bb4cd6f14871b0acfdc8745c1d2f4b94_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8@sha256:3d9b59b987e204ee6ac0921a104730dd0fec01574adc73c2235b06e44841ffd6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator@sha256:da09ef052f0e9d5e92f9428ba4564a70681e0fc38c59ce2f302b593248d71c80_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ovirt-csi-driver-rhel8@sha256:552e345d57ff44a53b11102cb47eaffa1dbecc0de47c189581e6b88baea908f1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:21697
Vulnerability from csaf_redhat - Published: 2026-06-04 15:44 - Updated: 2026-06-29 04:50A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_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 OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.12.91 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.12.\n\nRed Hat Product Security has rated this update as having a security impact of Low. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.12.91. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21696\n\nSecurity Fix(es):\n\nNone\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.12 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21697",
"url": "https://access.redhat.com/errata/RHSA-2026:21697"
},
{
"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_21697.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.12.91 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T04:50:11+00:00",
"generator": {
"date": "2026-06-29T04:50:11+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21697",
"initial_release_date": "2026-06-04T15:44:26+00:00",
"revision_history": [
{
"date": "2026-06-04T15:44:26+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T15:44:49+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:11+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.12",
"product": {
"name": "Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.12::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8\u0026tag=1779312949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy\u0026tag=1779312949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8\u0026tag=1779312949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator\u0026tag=1779344465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3Aa490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8\u0026tag=1779344463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator\u0026tag=1779344647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni\u0026tag=1779312890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp@sha256%3A374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp\u0026tag=1779312925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779776719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779778273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779776698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery\u0026tag=1779344482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Aadab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779276573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779344454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3Afa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779276401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779276594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779276725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Aee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1779919814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel8@sha256%3Ac1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8\u0026tag=1779276292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel8-operator@sha256%3A39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator\u0026tag=1779276137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Ade1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1779277214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1779344428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-contour-rhel8@sha256%3A01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-contour-rhel8\u0026tag=1779344443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1779345396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779775400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel8@sha256%3Ab4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel8\u0026tag=1779275276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1779312924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3Aeb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1779344450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8@sha256%3Adebf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel8\u0026tag=1779275312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8-operator@sha256%3A7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator\u0026tag=1779344458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-operator\u0026tag=1779344466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1779345400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-cni@sha256%3A8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-cni\u0026tag=1779276282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3A631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller\u0026tag=1779312919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon\u0026tag=1779716480"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3Ab64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin\u0026tag=1779312925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3A88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator\u0026tag=1779716474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3A34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook\u0026tag=1779716476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8\u0026tag=1779276203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3A41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator\u0026tag=1779276136"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T15:44:26+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html/release_notes\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21697"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_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-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.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T15:44:26+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html/release_notes\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21697"
},
{
"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.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:b4ecc5506da6776313451f66292ada35e8f6970eafc39cf4dd6d98d0162d7ad0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:39bfb0395706d9d1cedd3d5d1f9664de09b40d3299a0631e73ddaecca182c40f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:7ab1b0fe9d4b4193b39fb11eaf488bade57253393aa2edfe63fc2cdc450aa0ea_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:debf1e11685378d5762f36a40efbbe45f9c56b7f8a20993148a49eeb2fca6416_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:adab032158a43dca19f90adda7096353b81d2de07200ebd4f01859aa6c8134c0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:de1df6a5b08ebba8ed793e86feaa375c9910ac3737952de89319beb95c01715c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:99a74f130d277ca6caac8deac7e849ef7843a22eed6ff8dfaa02b02cd0dd0df4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:8107b2141f076725fb04bffc2eb49f547734da8a170f82e2e7537797bdcce1ad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:2a8765c40de1ee4aacf3b23b5f869bd4d8d268619963fd71c55d9de22f9f55d9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:9a3b25466712852158dae49ad01892858232deb5fec0737b165fca0081db311f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:5a44088f77c782105e5bc52b0fc8905d8ae5710ccb6ed2380c125699f69e6024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:a490b4dad34d94814fb35d9ef30a7da9d786092a458af7f757cbd4adc7fd0253_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:01a324c06f74969299d37ac5d41f08fcc2821abb2789e56f71cb84d6a7296e24_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1f8a8c421401e4b706178005c216ad78a4e4813b33b6a958eac2c62ace1135da_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:fa4352a63f8dc9c59284afca0e56f2931255bb573cb444b985acbf0026842bf5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:4efa58c1a0c89944e692a790075716354b14f0b48c6b299f5a73ef947a455e13_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:0055867f60033ce653901134252b9425cadc6d5d9b5bb9f91e50f1c9661b2829_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:eb7e26d6838664d694b1d367e17407ef83510f348981806516e08ff471d2f36b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d3220c0cacf94e3a6cb96584f84dc217906b897c8ef0fb8450de6a8bcf9bf1a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:75108586cbd2399cbbb3765babbb6ad90a9bfc96af4d78fda5f40aca57077911_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:c1b6ab629fc17c3ba8cfa1d688769d1a61e78d15c4e2fd2919ed49e905edf50d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:8463d40a14583d1f7acd9ff73e31ccdab8ff54f7a2604e099fdbde954682f21c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:61d890c9baf5ca3a7812cd48a1a992f957cb62d192888e19d0e39030db8d52c7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:72d95303072adce41fba3b2bbcf7aa1c888bdb64dd2d38cbebc36a04cdd8c7f4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:2f5b14f2f41d533f444d4017123d4ed46db6e7b70fcebfd2c8443a1f1c593515_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ee1c2aaa6384f63e9299cc634df8eae99f0a5f46346ca343391018d315cce232_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:52fa48425c2b972c7bf9969ac79f4a3d298ee45638d7236ca1e19863516044d3_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:374b7b13791fa76cb0d6ac9ffea2528ed5923667c59d91aeb889c6843fd373f9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:8591b82656031d59642cd5e8149509a43c42ce2b999bbe4aae6672972e3f1e1b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:631a4fe37e554f428cb6d20c96faa4259e542c8d4993b3e2836e6297724da12a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:3dd75746f54f15ce244176cd8594dc793bfcb25161d16515df238f2e9b3e51fc_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:2a03ad6a571f8743a61e5340e8488ac5008c574d2477ebf8129739b098c5b1b6_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:b64023a8dc381898d523f72312c5b210e069fbe33fc46e3def1b75ba9e56033c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:88e3bfec8ba103e92bc7a301db0b9d608d92d7e6d2e52505a04dff4bd56339c4_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:34308a5a467ef6d7085e659d1af175773b84cca59a3386a6487144d2359da035_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:41418ed3a9b3928c6b6b5e0ac292f5b24413e2c3ab4581cb489eff9c957c339d_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:05f78d3cb075b7b5c08471b15fb121103871a6dd4ade7c074c4f7957d372c145_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2eb47157706b5c39352b0ac10162320cafbb9b82021ecd2f86ad74d7d16e50cc_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:21703
Vulnerability from csaf_redhat - Published: 2026-06-03 13:17 - Updated: 2026-06-29 04:50A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x | — |
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.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x | — |
Workaround
|
A flaw was found in xmldom and @xmldom/xmldom, a JavaScript library for parsing and serializing XML. This vulnerability allows an attacker to inject arbitrary XML markup into a document due to improper handling of DocumentType node fields during serialization. By crafting malicious input, an attacker can cause the XML serializer to prematurely terminate the DOCTYPE declaration, enabling the insertion of unauthorized content. This could lead to information disclosure or, in certain configurations, the execution of arbitrary code.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 Container Platform release 4.20.24 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.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.20.24. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21701\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.20/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:21703",
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-26996",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-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-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41674",
"url": "https://access.redhat.com/security/cve/CVE-2026-41674"
},
{
"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_21703.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.24 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T04:50:09+00:00",
"generator": {
"date": "2026-06-29T04:50:09+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21703",
"initial_release_date": "2026-06-03T13:17:43+00:00",
"revision_history": [
{
"date": "2026-06-03T13:17:43+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T13:19:17+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T04:50:09+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3A4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1779864090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779777687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779777388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Afdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779776672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Aa28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779777861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Abd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779775431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Afc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779775423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779776773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ae4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779776620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Acc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779777526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ac61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776922"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779781682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779781342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ae497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779779724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Aa7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779778205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779775755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779776820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779775197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779777994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779776081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Af0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779775511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ad1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Af2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779781495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Af7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779775191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779781697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779781930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ad335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779775448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Af52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ae93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779775464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779783177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779775563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ace650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Af7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779863939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Acf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779775255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Aa0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779777857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Accce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779775517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779863902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779779743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779782078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779776336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ade57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779874396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779844248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ab8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779776122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ab61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779781969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779785866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779776050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ab2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779775195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779781950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Aa34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779775521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ab6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779775579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aaf347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779775339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ae16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779778417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779776853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779776240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779776840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Abc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Ac29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Ae1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779782826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779783409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Acaf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779783037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Aade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779777082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779780750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Acb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779779260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779776436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ab9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779775184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779781357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779775680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ab5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779782506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ad5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ac4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779777105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Abddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779778742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ad3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779776262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779781011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ab545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779781723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779780878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779775524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779776618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Aa3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779777874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ae86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779775176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779780995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779782483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779778681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Af445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779781449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Af6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779782077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779779849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779780338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aaf72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779776585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779776526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779844351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779776641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ac52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779775267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779775826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Aa2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779781518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779776416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779778977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Af31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779781964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779844762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779844896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Af5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779775778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779775988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779782913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779777275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ac6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779775167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779775154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779873179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779385103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Afaf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779782634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779776299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Af9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779776633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779775139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779788420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1779775167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Abec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1779775184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779776387"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779776767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779777382"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779775224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Abc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779775717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779776691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Ae58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779783452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Af10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779778558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ace2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779781924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779784236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779776126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779775152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779798582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ae53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ab63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779777643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1779775534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1779775534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1779775172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1779775172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Afbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1779775225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Aa272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1779775386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779785065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Aa70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779777772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779777107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Adc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779782462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Abc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779779389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1779775153"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Ab33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779777687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779777388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779776672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Aa90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779777861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779775431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779775423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ac112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779776773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779776620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779777526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aaf286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776922"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ab9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779781682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779781342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779779724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779778205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779777994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Aaff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779776081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779775511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779781495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ae473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779775191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Af31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779781697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779781930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Af06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779775448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ac3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779775464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Afafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779783177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Afe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Afcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779775563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779863939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779775255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779777857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ab113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779775517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Aa6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779863902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779779743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779782078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779776336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779874396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779844248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ad43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779776122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ac6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ab2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Afcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779781969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779785866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779776050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779775195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779781950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779775521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ac58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779775579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779775339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Aea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779778417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779776853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779776240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ab02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779776840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ad51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ab028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aa60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Adf10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ac95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779782826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aa2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779783409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779783037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ae600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779777082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779780750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779779260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779776436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ae984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779775184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779844896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779781357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779775680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Adaed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779782506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Affea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779777105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779778742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ac01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779776262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779781011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779781723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779780878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aa010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779775524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Af94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779776618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779777874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Af28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779775176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Adb7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779780995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779782483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779778681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ad325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779781449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779782077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Accf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ae67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779779849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779780338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779776585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Aabf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779776526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779844351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aeede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779776641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Acdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779778977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779781964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ab3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779844762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779775778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779775988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aa0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779782913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779777275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Adea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779775167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779775154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779873179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779385103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779782634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779776299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ab49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779776633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779775139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779788420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779776387"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ad1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779776767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779777382"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779775224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ae7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779775717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779776691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Af39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779783452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aaa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779778558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Adc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779781924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ae513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779784236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779798582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779777643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779785065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779777772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ad61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Afd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779777107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779782462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ab58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779779389"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779777687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779777388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779777861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779775431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779775423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779776773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Acf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779776620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779777526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Af42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776922"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Abe3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779781682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Abebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779781342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779779724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779778205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Ab65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Af6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779777994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Aba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779776081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Af475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Acd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779775511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Aca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779781495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Add3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779775191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Af8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779781697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779781930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ab762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779783177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779775563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779863939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779775255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779777857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Af75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779775517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Acdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779863902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779779743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ac3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779782078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779776336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ac406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779874396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779844248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Acbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779776122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779781969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779785866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ac3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779776050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Adf55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779775195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779781950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ab4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779775521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ac7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779775579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779775339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ae685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779778417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Aa8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779776853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779776240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779776840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779782826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779783409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779783037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779777082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ab544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779780750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779779260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Aa4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779776436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Abb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779775184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779781357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779775680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aaa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779782506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779777105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ada096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779778742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779776262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779781011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779781723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779780878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Abddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779775524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779776618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779777874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ae21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Acbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779775176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779780995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779782483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779778681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779781449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779782077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ad9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ae02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779779849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779780338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ad146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779844896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Aa8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779775267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779775826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Af673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779781518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779776416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779778977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779781964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779844762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ab5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779775778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Affdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779775988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779782913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779777275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ac429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779775154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ac658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779873179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779385103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Abc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779782634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779776299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ab0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779776633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Af627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779775139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aa5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779788420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ad5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779776387"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Af32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779776767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779777382"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Aaa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779775224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779775717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779776691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779783452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ada64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Ab707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779778558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779781924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779784236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779798582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779777643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779785065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Aca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779777772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ac884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779777107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779782462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3Ab26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779779389"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Af573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779777687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779777388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779777861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ab6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779775431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Af4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779775423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779776773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779776620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ad6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779777526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776922"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779781682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ae527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779781342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779779724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779778205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779775755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779776820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779775197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779777994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779776081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aa23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779775511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Abecccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779781495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ac4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779775191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Afe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779781697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779781930"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779783177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Aa454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779775563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779863939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779775255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ab0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779777857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779775517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779863902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779779743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779782078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Aa8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779776336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ad5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779874396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Acf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779844248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ad9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ad22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779776122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779781969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779785866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ae3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779776050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779775195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779781950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779775521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779775579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Adc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779775339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ae44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779778417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779776853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779776240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779776840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ac8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779782826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779783409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ab161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779783037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779777082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779780750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ad0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779779260"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Aa0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779776436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779775184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779781357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779775680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Afc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779782506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aa28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779777105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Af86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779778742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779776262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779781011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779781723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779780878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ab7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779775175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779775524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1779775177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ad95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779776618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779777874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779775176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779780995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779782483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1779778681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ab7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779781449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779782077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ae6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ab7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779779849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779780338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779776585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779776526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779844351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Adcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779776641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779781518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779778977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ac2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779775136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779781964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aaecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779844762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779844896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779775778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779775988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779782913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779777275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Abace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779782005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Aa6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779775167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779775154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779873179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779385103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779775157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Acb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779782634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779776299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779776633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779775139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ae754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779788420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779776387"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Adbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779776767"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779777382"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779775224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779775717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779776691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779783452"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779778558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ae5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1779781924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ad97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779784236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779776126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779775152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776066"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779798582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779780386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779777643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779785065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779777772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779775213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779777107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Af2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779782462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779779389"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-26996",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2026-02-20T04:01:11.896063+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2441268"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "minimatch: minimatch: Denial of Service via specially crafted glob patterns",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this flaw requires that a user or service processes untrusted input.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "RHBZ#2441268",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2441268"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-26996",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26996"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5",
"url": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26",
"url": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26"
}
],
"release_date": "2026-02-20T03:05:21.105000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:17:43+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\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:27c93d3b308e9c3694dd7e448d71f61e4e3c033ad8905031736bd1912c1f41fc\n\n (For s390x architecture)\n The image digest is sha256:588f4ba99d745826e618e72a66b8f81f671f7714263a5fc5e830e1f66942ca55\n\n (For ppc64le architecture)\n The image digest is sha256:b96960dd4a50eae41f43ed029dfbdbc53737f72ef7c4d0a062d0fd2802875bd3\n\n (For aarch64 architecture)\n The image digest is sha256:9cbee5f3e59dc3431ea30d2e337668f8abed821be651936afa99e6767cf39108\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "minimatch: minimatch: Denial of Service via specially crafted glob patterns"
},
{
"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.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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-06-03T13:17:43+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\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:27c93d3b308e9c3694dd7e448d71f61e4e3c033ad8905031736bd1912c1f41fc\n\n (For s390x architecture)\n The image digest is sha256:588f4ba99d745826e618e72a66b8f81f671f7714263a5fc5e830e1f66942ca55\n\n (For ppc64le architecture)\n The image digest is sha256:b96960dd4a50eae41f43ed029dfbdbc53737f72ef7c4d0a062d0fd2802875bd3\n\n (For aarch64 architecture)\n The image digest is sha256:9cbee5f3e59dc3431ea30d2e337668f8abed821be651936afa99e6767cf39108\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
}
],
"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.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"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.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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-06-03T13:17:43+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\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:27c93d3b308e9c3694dd7e448d71f61e4e3c033ad8905031736bd1912c1f41fc\n\n (For s390x architecture)\n The image digest is sha256:588f4ba99d745826e618e72a66b8f81f671f7714263a5fc5e830e1f66942ca55\n\n (For ppc64le architecture)\n The image digest is sha256:b96960dd4a50eae41f43ed029dfbdbc53737f72ef7c4d0a062d0fd2802875bd3\n\n (For aarch64 architecture)\n The image digest is sha256:9cbee5f3e59dc3431ea30d2e337668f8abed821be651936afa99e6767cf39108\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:17:43+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\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:27c93d3b308e9c3694dd7e448d71f61e4e3c033ad8905031736bd1912c1f41fc\n\n (For s390x architecture)\n The image digest is sha256:588f4ba99d745826e618e72a66b8f81f671f7714263a5fc5e830e1f66942ca55\n\n (For ppc64le architecture)\n The image digest is sha256:b96960dd4a50eae41f43ed029dfbdbc53737f72ef7c4d0a062d0fd2802875bd3\n\n (For aarch64 architecture)\n The image digest is sha256:9cbee5f3e59dc3431ea30d2e337668f8abed821be651936afa99e6767cf39108\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_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 Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-41674",
"cwe": {
"id": "CWE-91",
"name": "XML Injection (aka Blind XPath Injection)"
},
"discovery_date": "2026-05-07T05:01:25.803044+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2467620"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in xmldom and @xmldom/xmldom, a JavaScript library for parsing and serializing XML. This vulnerability allows an attacker to inject arbitrary XML markup into a document due to improper handling of DocumentType node fields during serialization. By crafting malicious input, an attacker can cause the XML serializer to prematurely terminate the DOCTYPE declaration, enabling the insertion of unauthorized content. This could lead to information disclosure or, in certain configurations, the execution of arbitrary code.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "xmldom: xmldom: Arbitrary XML markup injection",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41674"
},
{
"category": "external",
"summary": "RHBZ#2467620",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467620"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41674",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41674"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41674",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41674"
},
{
"category": "external",
"summary": "https://github.com/xmldom/xmldom/commit/372008f9ae0e20fd69f761c7b79e202598267314",
"url": "https://github.com/xmldom/xmldom/commit/372008f9ae0e20fd69f761c7b79e202598267314"
},
{
"category": "external",
"summary": "https://github.com/xmldom/xmldom/releases/tag/0.8.13",
"url": "https://github.com/xmldom/xmldom/releases/tag/0.8.13"
},
{
"category": "external",
"summary": "https://github.com/xmldom/xmldom/releases/tag/0.9.10",
"url": "https://github.com/xmldom/xmldom/releases/tag/0.9.10"
},
{
"category": "external",
"summary": "https://github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h",
"url": "https://github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h"
}
],
"release_date": "2026-05-07T03:47:51.140000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T13:17:43+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\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:27c93d3b308e9c3694dd7e448d71f61e4e3c033ad8905031736bd1912c1f41fc\n\n (For s390x architecture)\n The image digest is sha256:588f4ba99d745826e618e72a66b8f81f671f7714263a5fc5e830e1f66942ca55\n\n (For ppc64le architecture)\n The image digest is sha256:b96960dd4a50eae41f43ed029dfbdbc53737f72ef7c4d0a062d0fd2802875bd3\n\n (For aarch64 architecture)\n The image digest is sha256:9cbee5f3e59dc3431ea30d2e337668f8abed821be651936afa99e6767cf39108\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21703"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:0a3df673b88932dca4e45598f4c2045119e68d3c1f2e7a223c05dec94cf06bd9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:705aaf7c7a6f751c6a661de7556f6765662846b3f87766bd9c2f25b8ced86914_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:b33f5383a6bc9f12b720f71ab513f08c825182ca2c780186ba11111d6eca6960_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f573528ddbc512f274ddaf60405b7377aeb934586e5c9e763814f11d4e563ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:0e687f3dd4f7b74cbae872115c03d448a50f684f2dbb611c6ddcd0456b8cc93a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:110e8070be58db62224155a9f7a0e34921f68c53526cb78c8ad115e850a69e71_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:359bf7ede4e6891821f0e2f28c275c4d6c13b7c4476f4a21cc20d1676c14d5a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5cad2263312e15bee4dbf5e77735ee5c6f0b24be002f7ce1fd749d1da499be88_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5077d261a301ff52c933c6772086d1b6bd82fa65063724059c7ea944cd902bcf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:68c102a3016115109e479c471bf5ff8b1a4bbc27c830d5d020f2f7fef82cee3f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:85302a78a0851c3f65364e6c14e590f45a340f45a567035539150482bd4dd8a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:926f9a82c9f96778e103e0218476cdb9b1bef8b53484ca4d38ea34c091be794f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1dd34fb17e32f5212425ebd6c4ecba9ffe15be128758944e51e90b388fc956df_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5013fb75f2b2551bd0398ea8b907c57a56ae83a597257a563b27af3d0c36163c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c8359fb24ce81097c43b42848371a8ebdfbe20cb54cbebac7a9037f42f5a6ab7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c95639051bd96f293a30b7924fbcaae1b3a65c75110a073e61dcc6e825e93c4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4a15ab817ac11cc0ff609ead4ed8ab5ba055d54e426b388d29a5681442be376a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7d56e0cdbc7ba19ff32661e7b47bb42907543f5dce5d88b5a3b5cc68451ffd29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:d0e0fbe1e4c4488de543f472fbc93440ef22814d38e4ceee292d4f8aa476a05c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ec4a02ec06764e1a5b7dbf05dca5d72b035d44ff901305a36ce10dc11375da0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:40e7ce5ac46bac08a4fde9d48523223ef13ae46d952887ae770b4e44bf564d62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5c4367e4bc30d65605f90e96de0c936b1a8605b8fa28ecc9af52ded82cb48bfe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:97899b3b08fd9b8337a7e67a7f1dfd22f3ca8e9634ee305194143e77a7d2a2d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9f7a4b8f752b713c2a7293d1b9c278f33b63119f35a307c5802a791a905f059d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3de325c11e4028d6daa452bda2e607b50023994bf24ab7fbf9c89b3589bcb2d5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:becccdd3f5f85efa3fb10d05bf6f016e702efaf34fc88862a81996243af6fa77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ca31c28ffe19b0344704849a8fd28b70f8a13e8329a96e5044a95fd179460d96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d1e941ec9027bc9787e8bad216ac0368378e6f42b4db425af6746fbbd7fa6e1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:12c36b222ea6e81c10a393f47a45ccf42061c5ae0bfc38ec8d925d6311844852_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:17a2527dab4c6c3f92d407151b3b48d7dc68a312f4bfbb2c9e0433b0d87f9b9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:35c9f9fda0def83926ee1a3cd24eb1330a348eb4e586700489472f51ccec04f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2d9b02cc24fd2d3fa3760d4bd2b2583178e0c6553726a7eb83f377abc70ff55_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:58bcc269e4bde49e9104827c7b5f3fa79e7ea2fb8979622f97ca266541f8cebc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:964af629a7b5c6d448600843ab262cef7e983f27439e533ede68be3bd380bd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:ac9c0882bec0b652eb99d59c4ec76f07b3f0816297e3574124bf09b051901920_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:af72d160eb2f81ee2a61bb5588439a6be54eabac381cbc63c57a0ddb690df3e4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:073784ed0e1da479acb4c395bd8a5fd213ca2beee95e5e8aff1e72a394743d9d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:26d2b03cc8770f32f9f7df7e1e4ff2eb77f48d7d43debc6c06082f41be8309b8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:475997d94c04822a39d44d88fc31f5aac7ebc60cd8f6279683b402ace4d568b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c2f2c592c04b027f31f0ff9c24407f37bd4f224e26729c79ee4d7f71c72c9b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0530e8ca26cf8def316f3a8694c9ab55d467a71394ebc2ddc425495a95a835ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ab135188e3c8d4ab2558858b14ff587ef6fe6aec6bcc1f6bce76426ab58918e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ebafee80575d169b00cc657534dd40602dfe79a8bb310db186bc61852bbdbabc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f31c237e0644a0b8a48c597632204f4687e277da786d66b3b47cfd5ad347214d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:179fba905cef46a3529b158771923e657863d85a3420f5c104e6b1a844a6d8c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:1a092092b5424681620b5ba88375a49627ba552b2249966b008b648f249f1c10_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:b5f72a9ab840cd47a8d3c65f31636e41bf6743c889ea2c0eb17d498d8d64d198_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f5faa206cb3c9a0acd37b8def1d8f6cff7b4411f4e87dddb07450bd468917792_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:27a205c6db76800bdf36555489bff549883a4ba7e74cec11449b311181390c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5b49630df1ff5edbb312890593c1c19647738e2357ca8cb25f663507fc6f4099_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:5dcb2a50c0822df3bf466a52efc8d36e70a3bc55e061c71666b88db3f7d79970_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9ebed2a11662d726d221e37c3b9bb6cb86c7aed1356ee196143f32b7256990a5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e1545cfef59de2c98aabc7803bd25708395c88330007735714b100f1ed6c82a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:88334085475f45e2324829f84b8af9db605ff1634fa4424106d8ce5a1204830d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a5bce7db1e3036f763524188396573b92602fb3755f0b5257a6c568197ed0960_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e754ed48825a50d57cc75a551efa622a3bd85510e6c30e19178345f7d3ab91d0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0f7f635191771bb934d122b544832dc520374905839c84ebc6fd220a3341bec9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:18ef270ec9e86ee7a5b7ff239a6e0174cf93d65cc5f7ea419978ad0132734ded_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:62a3c6ca4043a29edb419a98e2dc41f0f5e5170334cbc896657651d152becc98_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c3167ae1b47b97105b6d263573dc504737b386bafc191f759538c3edca113301_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:098c937b970179ee7eae07dcaeeeb4caae3b883fcbdd091e952c76df5336f66f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0d289276fd9e2bcf62d96d1eb5d5eddd7998c7b47eeed6b7e72704747083712a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:31cb196c39e1b0af32153ddba5dfe01d847a943fff973e4fd082263be04144cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:77e47d966c0bb24bf21cb139700de951592cc8e1958cda2808e71acd957e4c6c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e3bd091fb1ad554cfca5144a10ba6b6b13ba6fcb1a8cc37b2783a2474ad0395_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7964e293e0cb1d60de15bfe3892330a0205462d39d3bb6cad0ad3e27306544fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:94ba8e155673341b4086b6e2c8a2a5c5801a6ec3634da737c7339a99f98a7137_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:99451443ad371a5e83ca4c4934c04149061e590967fb809b85612dcba17aecfc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6197d99d0e176356041bc8d0198e4fe4a2d2090a7adda66db648cdde8e3bdc73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8219af3ab0bdaa97d49db67e820464b7fc4cbea37741239dccf50bb8fe9807df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c58099a77a9aa897f9a85156c9dc9eda7f7ba1175dd00c93fda40f3d9f6f6fac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c7e9991a6c5657f5dd685a84cbb161c1b36e61b2dd5c35aa1cb8228b97019fc0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7e94fdd5e1c870b7e424860da725d921f66bdc863a8d3d21a522bd3b33e74414_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8824603f3d8ad5454348353ff536e6a9026bf12e31f8611b595b16a0eae04a3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:af347ef41dfd744646501160f910f7c8e3e39f5473251045d47c74d87620954a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:dc310863a28d2500888dc833e3697fde4d1ef6790689075851ba29c8b518abbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e16660571ffebaa93ee6649d0968b37eb515d070c4b48f0a180646275677f91c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e44005573355f7f57a0bb9b5e570bf0b061eeea7f8d0e54412ded6d5236660e1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e685731079de19fefdff1523059b92d2ab93e4421405eb29428eb465db18a73e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ea596effb2cac0b0795198bc507c0f86f2012097a71057d6e5212596d5dfdc4a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7038a30b8a04b6fc8edecaf85aaee5aa24061d0984848ce93d93e2161806c671_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:77f6901ffcf323c72e80e294c79f72995a1c9851450a8595c485245048f6f26f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8463a6b43c3ba4d4be8afdafb89f3dcabfa25357f8a0170e44462f71895dae2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a8737bc21caeaf82fba413e957679ced2f0efd2254848c40e59623675c0c4181_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:4e076a25647f415d202a969d3280e2c8fe29f0d76ea8a11b0d31c083ac46805b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:465f18e0763466f9ff321bf2544ab9a91dc7efbacd561338e3e6250ac632511d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:474cdcde49f1248e7549407eae6d123f6248abf058ca7aacc8b88a693530355b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4f8fc158a14a00ec2ed490a2a23e137d2a8dbe307e8cc9c0ac9f9142ee1f6919_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57b7c907a59a64e12efb7fc753159acaf26ab7a5847f4bc7dc4f546a0fbf5183_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:05f6618d8d196bc0c5a985659254ff76e5e85c13f594613ec11a25249ca2fcae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:3a392e1004d736dc578e7b728e3e1787c7cf6deeb05faa6350e5e9e284af32ef_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6b141d140c7748ba4977375e02e05df770181f67046eacfddbed06b8504fb130_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b02662374e126094de72130ba0dd8d4d1f10be63e5cd0a8738f334a3ca9bf3c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2d398f80df6305806fb65f4d46714a5c033e35609ba5362cfd72f87cd952b245_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:bc51331633e7dac36208a4d920e73e46860346e9eb2e751d7bb7e8e1c98a2515_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:572b2ab8a0a74cc773c0ff48342932031eab6c2981f8c6f93c614b56048bd6c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:9f5d9b7b7198492fc5fb2b32571cfface15f7f44e001971597237d46120fd92f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:65877adde22d2050bf731bd72f58ada5920731bd9ac0dcbcfbb6535e6a4eb3d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:d51476dbb6f0d264100cf68bfd6feab062ee93d1442d8a54c01e8c0b93ad9a90_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:0f51f80e8808df2c78b49384343fc2a8168e11a0f6e3509a096eb7f7b9a00065_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3e4a56aa52800538cf2f060663fbd2771008ac62ae1bd5c755a7b6e352c16206_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:278480c9820aed073504b368e21798c91035c362929e87a98993af96e83411ce_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c29d9f8c9d0f23a3b6b7f077e16f95c92e714affb0ee954e9dd438eedb756a7d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:9f7bf302d74e013a273585be3a8e4651554f4b81449fae8bb05e17d450fe9e0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b028c1ab7bcbae0ef5d2b096d477ab3c23b91018f1cb2292d71a6d7b5c0a6d84_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:380068d41e38109f7e3eab997ace654c182aa53b8ed492b689bb9a275d1ad7f5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a60169be3bfeffb1f554d2ed2807e8658a894dbe6e09ad75916f2db5807eee6c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:df10f669caa75976cb77ae825576105be739409facc4065634b0bbeab9e8a75f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:e1e9b9401afab37d55fd1b78d0cd1f23ea8c21a38d84c65dea8b32e8f3516b3b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:53679825a6e1fb5ce6c57d08c1b8d1263f28cbe0bf3ac0cbb54f95fa3e803c87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7a811e69dbf8d026aa6b227fc4383a2106c09120fce8f79832ff7af0822cd208_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:04b63d5285d35925254a6e12172a0279d097b76fd8a4cbb835dbfffd331c1dbf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:6632dea80c90cacf841270911695d079151e4478b8594f66812e5f7e4091210d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a28e5221608457011400e9f99f354fcdb94af6850f8caa308d5faab71ac9453b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:a90d169c44d30672c48996db3e069fed5c6c498d3e4a08e05a3facd6516c55e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:57e40cbc1a5affc4104fd012c31d8a9db6eb2170996b86e16cd71868a5b7c1c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:fdc36ba31b8e9b2d8f4ce6a8404319a0f2f0e5e24f3798847cd9faecf415328a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:7a83ca67e2ebaacc395ebc92cc2b5923a7cd85b5d891c8a05191b4ee2c69c9d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:84cd63d8552f55fc433c8c891651cf42d233689d4bb13973e14fe654f92b9159_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:31fe361dec665fb20964b3f985d2c37611d884c57a4c1fde289311c77fb85d77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55d5dff57ac7c9f02682f4f8ed90447dd1d4d4ec96d7fc16bcd7c44a497dfe16_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6403c1edd3ff3b978622e89c4089bd6c85081a0c934d9361492045364036dcf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a2417cd4c1f413ede172951f15f30449a39ca66be5222076c3220ba113e02a2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:206971abf4315b66b8cabc14a5f1ce11be2d155ac1c86e7f02be2ed07370c698_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:7f867c72550648e634ae3c1b3b11cbb20e1e5aad0061981b189061c10febbba4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b161872eeb3837c096cfc51582cd3699d58ee6bf5f05119bd5751f767b9ce7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:caf824087c07e17338eede4635454af11230a3d92d4e47f0862393e608ac45c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1d1c5bb83909ba6ec80662c996a149e86570727896a84317317f7e8f250f0681_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:68632c95a1c62048c981777aa37dd28032713cf9f38ce6068710f4dc7955f710_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:b6f0a5f733676de531500190d5c275493a00e08318ed72b56f5d808e1bf9e4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:bd6588f89826373fcfa72bfd8103134ca57800fd1ce3eabda0744bdc0e841f94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:07a35841d2cd386f4e9ed64f065a55fc45d09185dc046a23d1337b69eda5f4e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:28625a2178430518fd39b373fc42a9df86d679c9e8aaa91d88e0a846c7ed3953_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:ade79900063a7ef46461355f8b93656cd363312f2cb8c7b0e5b2918ed64ce077_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e600636d37de4e92e0afa5015b3ac8cb83a78eb8200569701d2ca4ac009b158c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:15aed090abe9887a151d142dcd5cf96c0fe230a4444c5cd9b81f65d93f16be48_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:4a3bdb06de7696c27f409f1727d43ef7e0374b369a4c48270b87a173679c598b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f4451e3c6a341b730a5371a599d51b1e0eaf9af0b49449887293ad8c038e0864_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:fc7fe19d61b03503e69e89ef217fc7b893f05672a6a14122909768780341e2e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:13c29fbc659c894cd1d6a04beb08baee2bfa766ed0ddd36ad7e139e5b72a3715_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:585d836b73c64fefe5210101e63df90344861e3cbddd5e2e1bc873532dd7e80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7c63fdbc8d91c593670bc1087080a9ae1a5bfd879d20f1a6872b39db12beee86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b544abbfa5e32b06300f343235bfa115f992c3cdabbf8aeccc8b2abdcf9e86c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0bfeb47948c5b9a43f9d1cf7a8318c466ff69f48acd53b062479a9448bddde97_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:48536a15b852ff347a08637e65b961ea6d2f126b191e0e6e60dc4bb86fa43d58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6b0df3c079dd2b3a278c0a1cd25a76546e3c259f4b73f76a5ed8610e7c2e8ba4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7aa2b19110366ce1571424940189340604881b10c4c28347ae024e07e589a234_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:040273438195399474ee728f8a1c2e132a5320a67d2b90e3e5d07b08aea22a26_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:177ff6681d01249831b68366fd910ad4bc2dd096aa7bc0ac91cc69c9a366a7d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:93c5fe86c0f0b95f640019fd7b9cee3392d1751d3630e3750c424c3e437d89c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cb24bf1150951cc637195c138ecd65ca6488efaad059c5cfd5f4fd3656ffebdb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:820a5fca286417c87721a810a56136fbac17e3c4e4c93ee268c0b1fca77e4d0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8946965d59f2bfb4659d0c3de755103db8b73ba71c2f5ccadec3f0f2731cac9b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a0d9a967f4f8e9f8958b2c860601850160fbafed94d658b6a49b1bec86e28348_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a4e2092ad8ac3efa0af20e8244d1de194ccdd373b3819af64accbbc40f76c9fd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:5ab017bddc043b67acae86a3fba0d582ef1dc05e3499ae28b04d6cd9873b70df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b9ffd01c170129aa4206ec39d3f8540bb49619ee76438718a57495e73ac7b239_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:bb091a7f67e34bb5b92b5a1fb9a813d94e6b830e54d591b8b989118945ed1440_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e984a85d2e67c75bf34f20331e2268dfeda4c14b7c0a6043c5a4e581269d6593_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:125995a224d56be3db4914867dd6880ea03401122a7a11293b31e6c623b07d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1b04c0c43ef82e9a0f3795f0d6ac369a4b7c2dc5eeb804763cf0b8f34dd37b18_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6e0b3c359f80a4b9a2214a2ef943239bcdbefc1a598c2436965d2acabdbc9fe4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8e21a13ef7fa419e6bc9d2f502e9d7847997dee4c5494a3f112b5a03684ed43c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:19e63fbd0ef7f26018040301b29150c8fbe4a57759f94726192ad8a94f7f1c73_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2a39a895a9850018da6b368928b759595d83ded1171a1daeda660c7bed015b15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:830d20ed78ee787acb7682927c1c166b85fb89abc2a6980f3f22ca2fd75c2252_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:959d6166b05556d3167b4544110cdf5118f243613e66f8f00c6941510c4e78c2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:0608f6d97caef5e5cd50ab9170e638673ac3f09382e2c666a06c4ec6f859a84c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:14e1b08132823bada651ac43e2f63c40b9c397ba250fc0fe823dd73fd3c14bf4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2c8c59c2f831448c7a67e25ae7ce7cde09587c6a5f0619e3d8cb8946f0efdbb1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:39ac054498a47785ea8ed10757b866daa96f43676dd99fbc40657e3e5b17c162_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aa47c0de3a9f98cb6e40a915d06b9337d1c5aef853721c5044571e4851821926_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:b5dfa24d9c50730f1001482ba094bbdc27a2f8743b1a26ad84ed2d2de6f1d8ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:daed07a13e183f2961cb6802a4bf7010f0f9c1dc7f8aadc5d14d2dfe48ee0be4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:fc480c3e6dcc114ac82277749a94c9d4cffc406597b128175987e1c8ed307236_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:12ded451fcc1b4cc6d85b71bbadebc1110f3cc36161d5d6155eb9080e64a430c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:31add0b94d59c7ede5913bd866f085c5da0acdd861107a5e43c4356c3c3f536f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:893c582012aa46444f5660ae9beaaf98658c2844e8bc6223b5e2a28a9035758a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:d5662aabb6932153572f25575aaa24aa43881113c5117569aae1a25c0c630d39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:657bfcc9d94d85eb204e39b50068832efb0d20bf78c634de31da363d90fbf6bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a28237ca61a5c50881e967197d85e6379126f32c062ee336569d32dde6cd60f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c4ff88fee719e69bce39d72eef15c1f857fecd2a2af993acf154eb39c1162d21_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ffea16cb80983fbb1cd5c9ead1f7559c5880509d9cb370547c48d8984ab4938a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:95372eabbe69b65eab5c1109228e2944063c4ac7089d1b667ea66788aba238ed_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:bddc3d2faa735bbe59bd46886ac38d02f70d2c7f63543d88659a69efb54f2226_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:da096e615376d02918aae1e29551f07325947d77aff22dc54dbf046da5fc671d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:f86726b4293cd1910a76bfc96a412a4152ba48b488f88e4bfec7e58a0067e701_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3520fbf6ef5cbdfbd5fdc4377f9fed866efdf750c9bba40b36f25e8b3a9bbaf9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8c3ad6cc7ed540d4c5cd4a58280c419545041b67f7e9c3948a28d0449a18bc30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c01987725114eabfa6e6e8989c3e0dbb88f74edd8241cf05d230de585b3bc3e3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:d3f7420b6f4efaa81514ea797d0b1aa400a9dbc9e298d95c24c0c31a4b615f34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:10f9d08a659ae44c85591816d8f9b926411b9eca92492a481e5bbb4aea060d73_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63b1ea764604a7c936fb277b8eea1b4b9a11e5a165574ac68911a1cd132ff9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:9cfb947ffb2e9b2d2275e2385a1bd82e23fb7ee3cad9360d16a2651dbd5f8b59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e71263f47c264c1c49f86d7762775bde7d14b6613277446cd43d24bcae39f5d1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:10dc2f679939972abb3f740b537e5b367cc96bfd63ff47abb5a546bb6b14ca86_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:1760ef0b4d5725662e42e45ea06e523cb0401f11583814488382bd5a85f03f68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3dfbf7479b5fc0bc704fefbb13224fe90cb90ace55d16677e0837c2e424ce78e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b545d0cd0aae1df76ff60cf0d5516cf7110c26a3f1ebf82f26b11360a18993a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:0fddf7a24b968d8b2d58539b319ed547c47d5f3307ec86de37eade42f82d2c17_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2f2e6c9ef717652935a597c0cdb2117dfa0d7af5028447403c6fddcb4c8b3ef1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:7e541267fb8e594723dea9a964aab69851fd6e28af4be47d3e93395a8bd3a10b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89ece1879448843f26eb062a1300d0eff102836b7f93448020d7f5f41e7aa12e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1aa38b9ebfb698afe482bd4b1f9a3a0e7ebb899c7a86ee126c175ad434788b42_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:632bf6ded2fa16edc6b17132046eb8534cb6ff42c845319f22114283b0205957_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:79e4e4bfdb8c72a251c3db6623479799110b9f39ca5568388bedade57bdda9f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:c112d3ff427723a27d8608a6f8225845a623425aaf0edaf861b992d1ffe4bb7e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:2e076ba46869f7fb3a642d740b40d725d76d22023e9faae6aad77ea9c9f8dcae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3581a20473f823993f70b33b1dff825ffe5ef5a66039be0c51683d22b6176806_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:76f0fe7bddeac90c38d69dc9c180eee545c553b59bde5adebe61b34913283ba7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:b7f879127f65aea9d4fd76285a0e58436e7fed63c790d238c4b9721ae52c06bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2680c625d782a897e7bf81326ed13da81564c2ee38a2b9c784e23d03c03ccdf6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3a8bb88e26bddc9892c73e4fd7b88b5a58a3935f0f51cdf0bff80bb9d6ff458f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a010c98f6a1c0a9353b7908e8f0d0b010c2e07640fcc225f841f27ce8fedb91f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bddb3b12167b3bfb815c937c9aaac1fd39d615cbc68482b79022f418497a4384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9a7bd36c8ec76eaabbd6969753b8e6f04a10750d95e31215e11646a3506dd8ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a93a4ec303adada397c9e524c8e90ca95c7e5e509b6198b159dad43f21398a26_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab24392fa9f7dffe998f3316043942080be570b8c3ff0cf4bd3f746b5faebe10_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ab3c68e0240a62e972feee56c1ffa63bc53a7bdb1bc9ebfdbafdf28fae6cc60b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:5250cd72ba9a83caa0d363a84c5968915f1d5dcad1e6f45e0fbf3b69fec15471_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ab55daf9697ffb9712555b8e0001d6fdf25fc470c2d0d33e7a7f635ed108a70e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac0b39c4677ab8ca330ee19af50fb338f8809a56aecff2a16fdc3137ac2c209f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9f0bd6e862461eb8d9aced87fca73032bfd2930432c89c2eb5b309a44f1ccf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:04c46d69be982ee71eafbc925f69d24e5e19afdf524a130e7786235295a7c961_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:91aade1f843f2f30d1d639f1583c01d271d32aee454377e4236c7bec1c959bc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:d95a2aacfc0f074b1f59277747f74faecf98bcdaff21b75a454d9fe189c5dbc3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f94bd16b897da2bc0007272c6d033cfde8fe32814529a75a73ee5fdc29585279_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:26b95df154cdfad37e522d5d566df22c40c071711380c73f29f615d7e123f227_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4ecc983e193e9a65ae0e3b768f640f87d2609ffef5ab321dec19e71d32db4464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:9c3912ca44bae800da8f9d7edcc3cd6949e87f0e41de068923cc46bef6f3cb84_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a3e432a6528384d5086c2c1ee5607951e6c8b0fc9030d398e83c22d43661eb0a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7b78421eb89358585b4b5af00e99ac19771c0d993e34cc984a9316c73bb85f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:7f61dc822149cf77c2e796b7816d7867089fcc68fe047862bdaa165dabd067d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8a693438634dab8b295f35cef5598a8a1509e23e7db39662ab2f3b5379915603_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e21c2bbf77290bc3f285d0ec4d3a6cc9067686e1ad8497a6e8ff5d3dd4b98aaf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:05ce109b1939c352fd246816d1ca14038b08444bee59351a72b6cd1c83eb5034_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:21dd3e04d4d6b7e39e974f55a800ef9b426ebe30366c5f543aede6164493c9e2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:cbc454601f16dbd90d988d2cfe0f3e9758ecfb4dcdd84fb37e8b57e13461327d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ff85822764e1394fde1a5dbb3f8e03be1b80ab52ca0d8510ca726b8aa3b93940_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:86eaddf811fcafb49a33ef0206f79ad114c8debb64f55307ddb9fcecc39ad049_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:ab1239b02ee22afa3bf7fde2325132aae4911567f987239cd641d116ae35c464_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cf13ae2fc0863b7c73b846a9a6fb9580a7aef904197896895bb3f69806c70b09_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e4c34319267d689cc146b58cb9f25ddb8a15aaff5543469ca8d60bcfabae7654_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:20b994c972e4439c56dafa94de6389defda14de516cae2ec82269e29be65d28f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5d663f952f2fef48ce2bc23f9c0a63ea95365ccee03e94532499ebd51dfc5f15_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc48f482f9f1bb54c286baae3b1a0761c4e68fe01a6057f03f27dc5bf3ba8bd3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d6ac3dd86dff00dd23cc001fe2b03d075bd3a1446aff5d806731651fba04d222_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:059e2f32a609a1165ac8237789947d5aee7cf7644745c8fa329a132d3759367a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:7d3f81fef4fac1b3f510028780d11e3c34048cc3d24d420e8bcfc494e95a2f7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:93960f3e7b53d35d8b4a07388fdbd806da368283118d06c4d43997dbbb58613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f42847ff0f6c2dbc6c7cb74334c7e2250b241b0a7e743e4aeb82d65066fbc835_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:049f65a5e80c534662a85767e9476642f43b6e06e4885dc17d64d8f69e95b47c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:75ef0fe7beffba200f473df28cdd095144f0f5d87a6d23ec3b1828152d694290_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e86c905de0489b3f8f272512f7d79946cf418f26009203e9aaaaa4d1ae18449e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:f28cdb190b2180d14432266b6cd0901707f5e6a8fac1230a5a2b15bcfe4a4777_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:00d9abbe7f68fed4ba759fb69b96bc3752898e94950e01e70297b05e55687628_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2aea701e06319cc9203b88035b6cd7169e727387d4c7d465ef52926a43e69e46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8be2b94468d0636cd9eb733119c2bda925d5b6744b6650ccd48e460b981cdac9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:db7f76f18464bd3aadebe6827a9cd503de8981d636b96ca969f2fc3ea336f181_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:082df632a35d7e49765230563f62560f5b6c604498399f603618e8c7c68e170c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:16daddbfbd6b49ad07a26b91e191eed7b4e359225280060c3897deaf9e495aa9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2ef93fca1e09224909e1171a4faf5edbdf3d5c6d365f4b4552032661428ec8d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:31406f054e496ecf6865fa320ba226da36c5afb71e634f813e2871cc38e81e83_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2106b49b9db60e074ab89e8838cff60c73690866b4943bf017364eebd3cf1783_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:709417764a15deaa85ad57f88f47177ebc7de30010a2665cf1e69f7382cce099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:af286bdfa4f43ff49918e0d4c6dd073dac99ef767ddf682486ef31057bfec968_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c61ed2024a2dbed04d2eceb9be1b190012079c23f03820dd7e17f0f5bea34e43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:29ce729ade6cdeea444f196ffbad94d1cd90e888fc527eeecd30a2ba7233e4ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:b7e25ecfea1df77a014dbd7df418720d6bcebb25879adbe7849c1cbe78f5d729_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d325892fe2152e3f5a1326c37694e60fe15466e8b4bf064f5bf8621e56f7a03d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f445b4b9f5fd84cf93c03889c22aff37853752f2d74c2dcd0bb1c77f3178174f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4db4ca66e4610c2eb69530fd0686f8056a0ba171568f007e19073b784704e295_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:56ee6ce15cac247e3000149d19e518c605f10cc385ae639caf5c141f18542acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b9c5462c8d0b131f099c35293684cee7b356b9342fa4f7899ccdae55a8a777a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:be3461240e16a5320db6d3f6ed82dbe8dfdc6523dac6b2146830f406b9c86d81_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:4969d5d5090859f3ecfa3ea857966037ffa5f981836879aeb5ae751b94ad762a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6b155fa3b2953a933222e72d5ccb210632995e661f994eec367ea7b221fa3f8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:7489ea904e99f35eac31c4baea933b32320edc187a70d19394eebddda593fb06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:90feba3a6add13090ad12a0d6be5c0e76ef2aadc5460d1ed4ca5293240c73bdb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:0e22e26286c0bb02c160243e330e6dc41e2e822ad899424f409f098657d80dbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b77d3cb776a42fab13ef10a39333dbd9fc38af2e5673a2f2315835fc7203760c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bebfe53dce4369e5c166ddb0367952e5f2df44893fd97756f8c6ab1ab4f96641_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e527b03710e6a29c1ee2e48211a351d7d7578517b6046b3d13b8a25ab1a965db_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3bcefbcb87163c738d7063f3e67e366c50b90ed04305393a7661c6ad62555e2a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6a0260c9b402375cd17bead5fa7d717412501f700cd2d4d05a00ceb7e00a051d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c908ae5725815f39777385779ea113f0b1d6af23be692574dc0ce74c3a61ae4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e497012454f69312801422fb23a9fa5292012567b7f555c663ec695a1c74334f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:271531b7134f911fae9379fbcbbe842f46d88fffd4c02ac6aa3a6b7de1bcb6d2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:481f3ccae018fff76d539b1583cacccebc297bb27ca470d888641017048e8e96_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:7989b790bbe5bc2edc8f159b82f1d7e2d405645a13e5b7d32f8bd165d1a849fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:cf0cdf68bdfd76fadd9aac6f1fb92d1c7423e42b1781fcacfea919f45f7b1cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:05a8e44c65cf2f57eaf5bab572ae135b929cb3b28687d7a3c44f32a16a10fa87_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c406991044f7245a58935bd9753898b5bb1e1f7ef65dde342b434ea31d5a1748_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d5fe580d3e259909d20c6eaa9cd189286d4f6730e3da33e5771c943a906870fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:de57f817f26a9778169b7c2fcab98a43fc97626bec49b390e56b0030299a84c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1fb623ce3814ba03e3a73183121f25c8bb025284605f00a698abcec24a6b1fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3ad49fd2fbaf99a15555b4401f692f9c9d0eee3e8ae56d685e9e8a2c8feba0f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:401c701daaa7eee753f7ebf4a4bbb55be17d143c1d9350b399323d43d7cac2b1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f6e941367a9b9aab665c763f0c6125289c9fb342726a375d4c5dcf2c024f13d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:07ae0176573fbe0deb5053b2114c3beea30db9730ef78b75bf06b0da4166edc6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0876e3465460236e4b4974794e280a857238eadba831ec537122d6dc3930b7b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5b259e30d2cf42ba8e878a86afd371ccba50e389b6145a57196ebaeff3bd6c69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a7d22aac42a08b55da47dcfb53a27fa770850dd1466445ef3f4822c843b61c1f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:3bd2c856b4aefc2a3e72e1d24d753cb7c2bab086c1c25cc05f81e9f6d6dcd5f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:521b8167f97391764ecbd8f0a09553d71e9d638c7d28a2fe96e834e90b347a0c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:3e8d26b30958cb8632978bbd4ef78a936563a8ba5c95b00510ed36c0a97dc83c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:54ba42942f5a1f73e9519c315322b91680ce3533ed6b8eb303394e400ab76a86_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:1a1ed5f0e1706449ca802c5ec242c41c80a4cf100c9ec1bdbdafbe2867b541ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:95df79e676fea0de4c25a5246aeeb5822ccc4161a93f307f9e6df22d44abca30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:34390285972c5a49064a2e98aa41d8db6e3b992a45f50cdb44e8ff29c2d13c9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3812be9d56804ea60473222cf08e727c115d655cfef3cf7874637dd2558d060d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:8ac65f8fc6ae1b3fb1ca22f799b05b31af6062cfc8e55047668b576e933532d0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:b65b59d03c92e14bafea13c481417bacfe3e5de1e44b63b9109361ad0a0cee47_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6cd8bd7a2ec6edc86aba2553ce4e46386d528f946481c7ecf29a2404ba5de6d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a23c6c93baf42b88c62b3e9911cb15822cfdca6a9193c90d29ca8e22bdfbb343_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:cd4936b3f34aab943eca6370840854cfa27fbda718e5c0e4ab58bdad187dc2b5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f0e180398fea0ac7a5ab61273976da0c5894d6e410f51d56496b8bec7541e924_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4533d4bd9e1632bc12fa04b59e51b030086cd145b2fd225f568d35a90ee7bc4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:52a2b9b68b89dd33d8e2b3d4cab96fe369e19fc39247d1d82f540fcc4578c0c0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:5b8cd33f30a0a716781576a2532ab9a75bfcffb227cae67e5f4b783c30028525_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ccf0478cd3e3c6a4c7c401334e220be0192db4d0ff66789c3af440c87df73420_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:182a9026043c0511686e50c3d6eebada3b0bf7ee790cfb18ca8029f47518e72a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:6547d159fdfd42bc41dad5c08b450f824f97bfb641e97a4396514992e18ecabd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:92b5b11bef8f1ab72457af9d62a1effa43a23e01e6a26294aed75944a718f1fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:f6d17debd8e974110e7548ffb6d1787d0d4419b725cd4601c0ef7c93cc3c62f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:17a7f0878a376a6dcb9981789a91664ecf662400954fabcdfc1f94906162daec_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:902c0e0f1cbe976e186ae50a15f8bd2e083edd0d7ebfd6411b83caff936ed9cc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d9df5ec68914e0ebaa8a9b4a0520c48a437380ccab76c1ec76524a71ec6dc892_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e6f1a8e8bc8710a08b3e798a0eed9db5ef854d712831483f20a454b0310d7ca5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:717201def51a39f4b2f4dfe77fedbd4a7bcb0a2dfc2f177fc985b76065a65d4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8d448f1786abf14868b4438b4572f0dd2ac5de00720552dd6f46e7384bf11a1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:aff572fde266e4a5deb24214c6ed5918899c852da69d1677a5f9ee4e37c992e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ba8a6e8831339bce41b930f5d2f6c31339dbb3b0a22d826a7cc31f24037b064d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:39a336136b6ad51d0524f1a53ebfb2f6564ca9a9f90184c77eeaedaa07383d26_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:86d51fb44e12b57f4ddb43bca7351d5939dc8c92f4f77bfe755664e5d2eb4d06_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9a70516c48de810b25a7a552116f2b2d6dcf23cb6c50503f8a278974062e8848_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f475aaacf66ae26c6689139f776285235d7abb01cee9ac89368fd3925678d9ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:066ba59327f651387e9c82d7a00b4cfc9e065c5664da2d995de832381144424f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b7815b066875ec7222f68946af4e025f42d26ae53e032352d4b070710d5fb849_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e02f027ab685cded47e8569bb47fd1ac134dd70bf63f28fcb56431472b430340_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e67ef97b74a90691ee07d01ed30a56c46430245929fb0c4caf21bcd61fb60c2d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:49b291882e09ad7219054d891e1a007f6e06d5cad7950a7e2760f4f0fe0273c9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:4ae6c70c1c9ebcc79cbd9e1d4113b0ae2bd922e88a5c7668cef5b2e75a4eaeb7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:62c0c3ef4eb2265a3a8e0f2a1a05e47461fc2bc4062f775df62194cce159cb80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d9e70c75d3f8f5d73095d095917e9f5857d1676c32925be57cef4da55600d258_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2402d8ef32c40d0d30e7742856c328a9681913ff038bed017a3d64f42dafde78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:274e2a5bebcb84acf02c8d76e065668026c5a4e3b8384222748a8349e523c11a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9adb1e46da705481cda8e97c487748624f4c8ec3f3dfc8c3506e9dfe1bc4ec5d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:a8d803d8fb359b8f55df18495a415233af973676a07f20619016fa186d526889_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:0eabc4f4a0410b3ff45158aa8d5eee956a59c07224da8837c4f5a8ac3647491a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:12479cefdb6ec63f51386b73b926255fa37131d17907034025d9e3d12e5a7709_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:35d9d36c06a165ae616fb98f4a2bf5b83606bed5a15352d92f1764ee15a700b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd00167567f7a813954d41644848cace90665e18de8687d34560708c2ad1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3fa159bd238859af50f94c6b6f2a1c6729b41e1f7b52f82230612de844b26f91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4eb897f6859a7bd447339c4a0d591d09fc201910d991917da878c9a4e8cbd683_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:5cb03475fee40f73e553e17120ec45075036842c0f6ef2c9a651c52ac7926356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81748ab728fff6b6d80447f4949c3048dcce79f5036b6cf31c5b114c83581866_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:23075f4e45d630b402419a6134b7d44731003b746fca99dbd71ef0f4cd78a29b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:8e33e1f7f873f470efaa60844bb5cbb57d5a2e1eaf9587fec9855b7561feab17_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9f9badd8f3cad14c99421c43f0456762a0ee5f53868a9a1f241a52a43b675439_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:1b21c18f6aa3aa6cbe0c912af2ca10f4640cdea3f886de23a7df6fdb7d90d417_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9b8b490bd6282a74424c9771706633d06cb251bcd6b672e576996bbac8c9ce96_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:abf48025d3cc9a1a080411431fcfd9e414636e54191de9056327e3391a61335a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0fca7a8971b03faa9503589578dfaf6b8d035c5b2de54f8c47fc8fe1fe09e4fb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:dcff4542e74941b6869cfa4c32230c4f9e638756bf19b390d1f9ea7a73079df1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:eede29e48e6fa006a44908508c9678630e26cac2ae94ef3869c13f9147d136c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:004cfc0d0582cc759ca6ae966327586b51ce1d113080fc8d2c0ae12ddfe522e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:28d5f42abcd49fbdbb57e5fc21512deb976569b098bdfec04ebe0122e79c3fb6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:97427ad49422ec29bfd80554504aefb1b4e526a598af8671d45fbe10b077d97a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8a8d8cafe9f49600751f4103a55f9b5fd9fdcc5027ae664babc8208f5b5ced68_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:90972cd8f30646be057eb087dd0d29bb0ed11dc59457234e6f82f5693e2bdc9c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c4a2990d39b31885f8a2df7036bf739d9ed662185c9306d3769f80aab9ea6003_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7f2b3512cc8f43677bd02d9f9ed3848c16a0d06dadc9686dc73f21c7d9de582_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:34711bcbd3138b3e707ddc474b0e43588aebba266a021be92050fb3a1199a3fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8e0cd191fde87d8e0f85619cc33ef1a1afd31d1869921bfe872e7f77298076aa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b8105450da1ac34c016b0a3a53a1fe19385a267639247bfaa59b8aa111832fb7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbef6c916917f2d724ea849162590c8faf4ed8dd1efc92611ce9d0a698d03596_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:220352af1eb703c15a9ce59ed6a1cead29d76f3dd97b4f43f136f41f2f31b172_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:9739ab34026f8baa5cf974f2c181d751227be009ec3e3f1245bec5b6bc525693_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d22820ee90098b72dc3e92c04f92c49287b978214c14a95e83c96b40a2db6f53_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d43d0dff339ce3ea5386449d815c1e336aa40c904950062895db91d8d10d1288_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0b082a39ae59aa13ab294d144249cae28d9f362f498bd4fa8ae422a37accdd74_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:25b55238a86c0270532bc4ece3a6f558c5bd8fa9a6abfe6bd27366d4aecbd80c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8cf22cbfa404b6a54a9de395949e6cdf7c50eca4b970e4069e11f9ef41fd48a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b762c3535b3966776b7084e5b7745b4cb4653b3967d040538de86f6901de4d85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:392624359f6aad40f526c2dd138160887c7c66edcdd2be155ef57deadaef16a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a8c0b348e23f6c3d3594e975af70a474774c5674306ccbc9bf948a0c4251b90f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:099b2caf6b8b6d0bafe97695505c0a8fe576356834297aba7d5bbd0baef1bef8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:9ab3729e632cc4543f764989ee4ea84d5e8115f15c7a3fe120dca3671f09fc56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:9bfb3a6a67e05853927b5f7318b789f494f39f64aceb86774af21e27e6f3b864_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c52cbf3e28834fecd98478686c6ac606524d3a22fd76e4d15f634da9de653e94_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:079a5f50846a3f89d7b49fae909ef787b688c8b2a140ed57b51a2150fe7b5c56_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a2ddeb75f767bcd0b8a75497be1eb9ecbc277cdfd3bf0ab1db518533eeed5d46_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f673d915b7f548992daccc26d2a8f1c657a186841464e3e501da1134516a8265_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32e7739b5976cb0c46d715950ba54c743cbf61563fb7b458489f639247e7a40e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:5aea21f1781929b3da029c625d7cf2b78dbe45d000c21c650d87ac586eabd845_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:561e35fa034983a18107c265d3e18368ad4729e3bf3e7e35cc0d31073919c60c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:cdb2aef4cb6d79be059fca4f0f7f8339107c434a22d9fa2c69480b819bbe5e6e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1765d5ca01c1bad2640a95009d71175d3fe2cfe89cdedcaef24a4cbcdc29d8a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1f73c68abbf46ad853c2e27a82e1d8e1cee3fff2db3b2046d467a46c9e7a4810_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:27e2638b43f3325abaed8d70a9b3c1c18972f1796207aac73b4652a561c5198b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9d52d753de9e1adadf9ede02a8e5a67b9a436f6776c7a3a9867789142e92a6a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a3a85a6521c57050fbdc3ae55ee0ba8c698f0c098ea8a03fae96bcc0bf75651_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:50768db8921b7d4b37f287bb0be3a9004c14a436179e3067c00692872aea6146_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5f7ecdf36150b9aba2e17be3ed6711d9275443c84eb004469def918aecbeab09_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d146c013ea841398c7269822f5af3cdf1080379bfe8109ed7ccaeab28e315cee_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:8492d19c7e6a9732c73e982383cda1cefefdfa80c7680f3eda77627cd575745d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:970beac116bb130e4529169651d2d403182e7136b785e4c86286854900042698_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:aecbca8a66614401da7c5362554ec54c1025feb373c7d97bf577632102614298_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3aedb5adcd30cbb37da56612160373286210ba3a44ade413ae512dcfa810c43_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5a46617370a6fc37c4a0c17ad234258f96aa3d08bffe43d0bd9dd0ccb88611d4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f52b3257349a3f73cc7525f8edc1979a58396e714ecc8b8280cda19c0f6960b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c3d893b7350ed2f5b0e63072ea7f7edd9c91f0d250ee52d0eb36e5bd743a7688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e93b1727c4eed8c54df72361e7b5c92e55752eab9b2b1d16b91f3fa55ca69ae0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:8f3fcdd24bbd2769280794e78f0dacee4300fd6812302dfd0bea8cfa84af8ff1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f06ef59863c060ead8fc70dfa1e92e06d0f93eba9a1501e8de50c593bcfc8b13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:23f31e0b463f23df5f4a52f489bcd5de8a159c9094b271289c2e0969199fd807_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:779255a852766fa7f6000e4b2d800b2917e97834e7b94dba7ea090a5dc317610_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:112ac0f91172c82ac4871754caf04725c38fb5225bb05ba47c6f69c34e361548_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:4667aac6e5e9bcfe76c8372b98ab28e25d05b76a923e8d7a4af1ec6eeaa90d39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6af54061a54e1d6dd26f35528b4f634a37392fd9aedffd1130fc2c316e98cbdf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c6e7c710650a70633852af9eb8b5776eb982ba51d1b26c4c36e133ca57adcadb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4bf451e961dc4f3fd7533237c2eb182fbf984e2180cab19e5564280df85d67b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5343d2e3518b775cf0ca24d1550b8701b438788ca5f2d4d85b6517d29cbe538c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9ad5ddf7d544e99f541845619d9332b9fecf9426060c029ce8ab7ab2d78c5f9b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fafe0f0707541e4efea5af2ee1e0bc81ec89012b4432cf1e1c5f4f8bcfa884ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:281a4f96defc7aa220db5af8ea7f3a4ab914e4b932e6edea4c2b02d95fbc5672_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:9ac4f4a29656d9349c4b36d5e6ee74740bda0a85f9208efb319aec455a2161b0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a454f8413b252ebad419b7857b0c1b3b4416f699557f796cfacf665e82a1543d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:fe61e00dd31b0c38f071eaf55880f6919f1c4e4283fc5b87b9c0694173eaf87d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:191c2eaec47fe06021d02bcbc50b22dcd1b6f35692c955e7cb864c050606b5dc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:20dbc922e30c61f9ccda27204843a15c4bd3a6d21be1e0433f80dfd52fa60fa0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9ec4867c199f97c3267d0f5acbddc1469970ee64b2ce0bd3b4db122d52958b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:fcff23e55e77ed00cec6b41babac6bb50398e70517fdcee0016c705c161ac5cf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56656b25dded7c8a79c1a0f17083881b998c2494138b888f6883e75bb6fdc77e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:79c5a30d115dde1b2a5b8319809dddadca5e18cf8632463bee7fabdf5034527c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a1277f53d7b2d0ccdabf59caa8e544a261e91396732856ee708e86e437db6f0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:ffdec904433abd134c3b293638252ca452345af46b8c1ac5dde008d14795ca73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:0a41b86cfaf476b731b1f72a3af60fa37fb7445a0447baad50f46aa013c8dcee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:100f33f57e38e3ffbfaaaa796077feda27fa5f789c3ccbf06aad69af8d4bed11_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3b48115c3a9be76c40fae3340bc4272cba2c09847efb3c9ef6779dc4184060db_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0691108363743ab2c4266dc1846a021567e89cd2171e0a43f032ca7ceec1e3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:1ae04b9f36b35fa4d7480b20dc342491669c02cc96a4496050efc1d1a067ad64_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:ed9c9e8629599d4ff052703b28c857c2fb29085fc1960bee5eda184ae754a75b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:984c38921e3e7158e7ecfe4a45b36180132646c3921027271ac5cc6d0abf6d9d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:dea0fcd037a3f84025484e20f5c9b8f7cfbcfa4a8c5636ca023a6f654662be3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1a58cdb3b0a73614aade9efddabbe19d31b92d7a2489e342ea64bea725700e29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:75202f0a73711f4e8f1d1618495f42ebbcf3e4e977a6ff9d02d2c67d146261b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a6d6853f6e71507a3ecd110762f81844d36be0652edf721a82b05f1200aad270_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2347e3d25f16154f229be66044053d738aa25df96aa21aa855f820510dea9a0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:35e75c47533279697dc9d6c50f2afc99e7a39b4a495e330ba791c212e9bf4655_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3b6f94a56ad519935a247ad74d0f4b79440f3af6501699a7793e438e0c461643_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e629dadc491ee3dfdb5a2b3d32c9332008343c88c1470ad86ea6856565d0e660_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:bace57eab296c579aa0107f677c2ebb9b142bc4107f3130398dbe2fd1cafe47f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c429dbec8338657b7c873496731128d5fe34c11bc3342600a207577e8811c8e9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c6e309e1b42a5eb31eee6893adb42ee9722a7a543af05e7c8f88c58e80e865e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d7a35dc2da4583fc177200d8d07d36ba069e2ae53de39dfd6099aed8dd038198_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:10f0704b4e7deadc21ff3a2fe5a033d45f2fde5b4e2d59a7f41aba6048580399_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ae43920cebdf1c287295e7a5b5758de8f838b000b49e9e0a2af786073da69fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:481942dd853eebbe86fc0c1407987165772bb671481eb3378a62e6e32130d2c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c658a214f9ef9e65bf655c110479aa1f05574fb1e97039531486daaca65ec2e4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:26c49767f4c56e7c41c5106aa05ebea0572ecc7af56819e0619e42c43c3d9e3c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5bc46550575a0a494e9d51e0f873db305db26c9ce1a98543d143fefff16ac12b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6fc3fac3e5926483fc53eac1e8d6058fc9432270654d0963ab978a4316a44473_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93276006523595f87faa8e164d94a07ae614799b0e178fee7593733de09a7007_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:191fa68f80b50dfb480a6b868c76b9e078ad69ab0d3e15fdc3090fbf3f803313_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2ed5e084b0cc552a294c65528ceb6f9b79c87e8e24873af8494e9e559a051ed0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ad6da0800b37512453205cc8a8bd65147d0644304b69dd8af770b79afcd809b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f7000d769dfabf260227944873dd5e00d946ca7360d070c1bb16bc4a56469d12_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8b011a469bb4e4e963d57cbb5dfe4d937d58db9453550bd8485c7953b7ae351d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9f872ab99f36de11c22876b3a7ca58be690fd3346f914c16939dbe24db8c391c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:bc69b1bdba8f9148f715067dbe3d577baef6d9edcfb5e3580f5a3c1976c4ea7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:faf3f6e46249d2b292e9d5ad8aeba19e5fed3611ff66b2c36850889a8c789534_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6424379738c9c71f72184d47f3ff71b6fd8ab00b3f6448f8bcd09b8255e2cf6a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7311bf50bb8b01aba9ba8cc4142569199fd9beebb8627d2a821a67a5b9996fad_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a0cbc5173da40d6d870c41746489fc42e96cbdf45ed244a60ff900711b275b4c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b0820a27940a22d0ff4cd4181e8cbf0ec3952d056882a99cd372a33a13b9fa79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6f7247d1a2a081277eb601c61e6b3844d6869b3e4db4fec2181840df7cd2eb1a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:723a993a463fd4be69779bd3baf4db256e78e0daadf3d006032abead9032954b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:91a033b316bd5df695aff4f636adaee5d90e6e4e20b3ccbe79379b60479853d4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:cf1d76a711b5ce8c0edd0c397f05e6edc2ef12913c4841e7e3d7f30479214058_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d44056fa3775c9bf76e698161e51e85afc85ba7d4562c331c0a3c8815901c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b113523a8f7527fa9b623d807b12b85d7b278aa99e88ce7039a64317227ef688_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ccce3b52af9b1d9ce1c062e2402edc5bcb7835157faf3c31cde7b557f91f3bf6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f75487180fc49058429f9b7e82d03685dfa901cefc3c0099c4ddbfce3593fe22_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:359d8ac75c7f991e7f99ebebb9d5ddafb8a0103e7e60e48f442fb5b7c2b2204d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:904891d89f3dc8d78dc692fa4c69b8b2d5ff485781b33ece28c879b642b5c1c9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cb2593bb29dfd60e7af5bd4f5b17bb32413c34838bc2b6169c3c816a6ceeba3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ed16eb220a0f2026b810d75baa42174e46d53e7ccef7dd9250e7f6a96e2d0bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:571e1c32b5feb2893103ea4ee048f98ab752fd8f951edb8f6a856e3a8ef2c979_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c0754562a120d817c7167f776a6d6f53ab6ea81c2be7ae3c47b613063ab7da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:798bc7b0a4a853babb8e70741a931a19875c2982acc6efa85820a686080e7d1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7fd647c6ea03eaaa474d9b8d327b9d22ee3522dea65e3926c4893f9eaf90438e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:70d70be1fa0af05c7dc5e6e6d902f8c10181682d7f74fe07e95bf28fdf12a660_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8a06719b5fb20570251bf6acf5249af6fac75f596107d39f4f83effadf7fa3e2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ac29e28e4eb034394cde7825bd5db7ea1b5f83f63df3af1b685c2dede3f8028d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0bfa9cff63cfb6a6c4dc244b72f2b353f4a12ecee5910dfe3c967797332c86b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:33c185fbf142eed6bbe47d51f9ba15b5be1ae3807107da7f09a532e816d3a4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:4c9129e16f681913aa6f28b1b45435df2fab1bd6de4f5725d23e16f42cc5b2f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b49c453ef988b3c76e083ac0531d9fec0bc60539b34768bc86d0d109110ff917_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f9417ac3d4c9ad52deee403dfcc39a351824b64ba6ff0653e3ae3276327012c4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:00c5682ee6ddf368bfda430b64065c0a3f1f5d670f08c6b7ef2aecab83a6a8fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0444144f64bac82fb63dc5678ba214056fb6d66079ebbe564a0652ca52c6731a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:28a1f4bdf8dc8f869277ac45b446bd77fb1f2831a422e266a45141ff80fefe81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f627743b1f4c46fea788fbf4c17e50dfa38af505e71f88dcbad0e0c02850b702_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:02c07ac2df715ee0446a3d02c4075aeb0c22a95974854599d3adc1eb9dd8999c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:3d02c5bbd93eff16e2fcd94cca05a5fdaf2e6f728352ecb4423acf4bf6d327b9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:a6f85a4fe777b78a0b7eb33f1c27c2bf4c4bb222a8a6209f80378cf03e4c5b74_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:cdf09bcb67d1d830d43839112294b1e4e83f926da6c6901299d71eea69a51484_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a3442164fc6cdd199c60fd3f951d4ac4b9b79440177e84ca40d3540f70db5ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bec7a880f5639c59498b08193ce32b0061f1b073b0257ca7de3ba27fec52fdfa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:06b56d9cdea1901171512d77a6d9f983fc992e03885dd285956c1cdebc17ea1a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:3c4cc8d397ffe7c31e003502ae1e64d13817a95c3c32bc87446ad7734e0a843b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9556c87a2ab954721c7507adf83edde7fe951adf534e9ae4bf9aca980d6b3add_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d5d5de62211a43eb22eed05fe2e3ca313e7ce1281c68d0d097b70f17103bf944_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2789935eb78cb8983314ea417a41e41b73e1f57adc8a7c6585d28dcc0868fad7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9d8f379d93b8b83c390f831ee4b62cde34b8c57d607b5e919be85fc6084fdb98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:dd3b1b0eca372679436c2a8234deb21329255045ffc0c4795d0b3c956e788326_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e473fc364dc9959138d8bcc6b52700bcbedbb09b39c62799e06d9a164010bd13_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:17982818857c72d82a25ea9a2bd25baa6c4aed04491ef724a40de8c5bad3c43b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:1808d4581a98fa607a96360d4dbf68ba3b94a382a2040c18bc6bb320105d1eb6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:181d9dd9a18f64bb02984e19b59f4d78a36565ebe3dfdee6f237bee5fd08f1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:393857a82cf8ef9d9e40f68535bd8a73a454976885f4ac2ab984692c575a2586_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:6cdbecf89343be38ee184b31e63b072fe8fa09bc4b9b7bd33da440381ff9ed5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d1445f32441eea4e32a8e36a7f592a90aacc4678ef7edf7b696e0b8dc8cbabbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:dbb76228c5cdfcc60dcc5620c8367933c6f79f8c9bf07e357132240d6c8b28b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f32326d55516b5200287ad55e02adcda44215b044e917848ac7aa4ce46cd0089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5c2b709da6b22a15559745474cfd8bd2b8e8196fc4ff3bad6606ee4a9aebe785_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:685999bc2c62e240b5d8e0bfae7d8ae14b4bfad83976bd1aa64accfd281c77df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:6e58ae3daa59e22bc8834820b6f2d5350dbf444c208a0ce56a7270bfb8e886a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:9f5a40ba3f03da6322008260e163fe73acdf304afa1af6e799dfb62ff494d2c9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2ac7d854f1917b41dc1525bd2988e816467e86ce8e6e3e010e7a054203b9afbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:720350215361718d9e9ef6f0375813538ecb21f803645fd6811ec4e38b2f40f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:89b08b3891275253dd6a8e3a2c1f3c199de3735288fb85bbc567270d4217041f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:aa56ec955024b8d594257423bfa014ebe4f2b45815ac2ef8d6f2ea58fa890716_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:369421829b96fe3c3da86e3312225b835095af074023b758562fe651b5cbb81c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5d05c0a72bd0e122b19e6ee9c2c208e75aa94d0c116e0a1d61689e25f86a95a1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:bc70fe192afb7a3518f0bb676f91af7b55d66f4c39e076f66c8d499b805ba6e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d0a0115f80affeb49b6356b69389ccf348f2e7e1d4db9508ef96816e2ddbc2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:736fc91748649d23d2617ae1503588426c6e654072a78800b405916174f13559_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:80e78c16607bdab746cff726a0db33c031c15d476406aca750f33aacd64d3955_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c3fe1237dc96e3cf6f19fadc2bd1d7fed6df56a8e46201c4a7941f7769557256_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:e3739e17f353a3ad0d928ec5a8613d17be87f270b4624872f769c5fa794979f4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:567a3f20452063213e803110f067319269b1967c01a0d57813f33c869d21aa25_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7cab8ea3f4c3187e574d836d48b64289a5c7c6bb7e62fb4ccb4377d296b0b326_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e58b0150491cb8fd9e91ff37a95ae1a2bfeee09329256dd0a2ab6cba7fecf1c5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f39661b5901b83a4d68dff76dda7262180cd799a673399a22ebd2b6f2e29e703_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:1b4207274be99ccd3bfc40f4650e80de4f0d3bc03a27530a29af414800d8fdb4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:605b39d5765aa4bd6d57cd07eadb4e8fa09b1f7eebad9d3759adfa8358327128_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:78aedc8de9120389599fad2e866b5541e6498a6f62bf4b779b4784fea3e206a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ede8069f1469a5623a0af9d91e9778762a67c17149a3cb382b8fef2d43ab190b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:3a500ec18105724f6a8580180d0dcde55639ce1981e18a87589684115ad724a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:aa652e2b02c21156d347a9c84c8ca370b1761d1d355d4c0024128d507f65be83_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:da64bcf7fbd2681359f38f542deb748d6c981e74e1b049a4fe9876f79f3e38ff_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f10e65b74d25c7f5a91d1ac1e6b3a3159d79d8db5fde31cbf7455541ceb259b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:8753292438a93eea0edf2c70f04323d95e972b755b1f3de3fd9287e02e49f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:984b5694bbd7ea3beea1048916512509075ed529ee7d8ec9eccb2148ace350a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:b2ebbc2017cc845f77fb1ec4ddbdcda34fc87f506dd5741b315c9c11fff5c152_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:df55b4fa4ec1f4fe66619eaf472dda3554493baf87393b2fffeaf232738a3cd8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0afdda2d7df6a3bc7b3477d84c61cec79a9ac92612872e7788542f77410e5faf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:22c8d87461f5cca8c38dc92957c8a826b1fbe4fccab0947658f7a94174894196_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dfc96f7fd7753da46fa79b0bbb9af6b957867d7cfb6f4ea98e39abcca28469b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b707b5dcbe1058e22fdc9c265b05fe9868acd049ad052fc2246ab9779303e2be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4e9d878d5a2962459d4cc30705bf6be8e6953d62418be5be63c405604a350b3a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:9cd704f46e54493655619a3a80df1e71a3e70c90ed3ff8e4e4844ba0570077f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:a34f46a8395ede81e6f80064130df2d6c99fcd380504e97c1f4f4c364ea92c2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b4704520a376fa445310317f5c34a70ae9dee3284f5cc5d70788b7a6ac02fa65_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:20a9ebee260a03e162d0e47602a96e2ddeae1e40f8d07d9ccfbdf0ad10c89727_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9b48c53b307c4a7901cc1dea016db02ba84675197ecc96c426b48b6fd5aa0df0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9fe40b4ccafda41a8c7529e5e30a5d1039eab22e0f7c73cf9ec115fcc2ae7877_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce650cbab6405f0dbbe8807fe7c1ac580bfcc945c2509a59a9284e080e25044f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:29c86077dcf7c03ab9eea112073ff260c4f4aaf10352318005af27876fb7e7e6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:464c98360ba43f93aec484141c5f1ad52109fb04d03cf0f889838b058d70d9ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:64492be8efa34a801e09878e4c2b8f3849a04651452d1ad2a695836a3d74cc0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b6b242aa05636a7f5a7ca91203022038f0f9de2236283eb30829a6589bfd2f37_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7ba2f2f5e6cb5c78fe398eddae2f450299fa7b4df1c6813be7141933b4ffd259_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:889256603b12fc897d57b7e72563b9c779449af51792c64544f003f27e732afa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8a1c26f6c7a529441425b3f61179fad109579c843c2a55eb8054295b67bd5a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9b5e30b8a4d5967674bd18949bbd5def6b7a0888172740255a1f86ad1bdbe790_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:350a475d1810d58984c14470e65ab4ebe058f273579fa3638a13e3e97d9106d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3817ed6c749015f2ac3b365d1284ba5a2632b00dd40694a4b47eb68f5b2fc098_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d97f273c6bf0237ea9e6989b7c2b6710a2f802abb62a71a5667e030bd6d05237_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:e513588d61b99014bd0a4cbe59e5ce5fb1935229a7ef9e17c2ef4466b6e2a1f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0ec82de37398225c6846046ea6e89680aaf00e60d4642bf7ae2121c32dc0187b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5f48f23542847aa0a1b5ee850305d83e4aa6136abbb581961794bef56c46c3f6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b2e01da69aab74221e5c8e2b7bc010d1e8ef382434fd200f0fc0e328053dce59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:b61e7c01c83cd1b5b95170310f10ec7463d1241246506c223797680c426d09c2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6d5ef07788dbcba55f18b40ae48934f351e9a8b6d34494c803f53ad8b2a29943_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:83c23a6a1fa885e5af7b484b1a666891d8be394f465fffca41ad868796942b0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d5944632d32c10763e61eba136e3329f207f0a0fd923d991df0ef726260543b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5bfa6591544b5585806337b4bb03a5e00cfc299857b036e421a23084150dfc64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2341dc590e29b342decbae6ef46a50721d71653fbd0c0eaaaf55b9db3625ea1a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2914dc25bacf57f386642a5e8fc5bec6fc522992fa274416157f01309a12bf3a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:073ae89722014f5da336ad3b8be5daf3cb6e53cab0fbd4e35969f31cd31f5392_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:776e0515884a2ce668432ec139d2aaf1bdef188c8d6ac09d96977246f1505a81_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6a5a75e6c65884a8163854ffd0de960859c4ce0e1a6a26b7c0ff0923b6a3e827_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9bddd34808f9253445afd8d4c764a129dc4cb0e5a11812697331346a8d576a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a70a0dc3db421dfcc3331d064ce4f7728d944f09da1e6ac2671cc8276e9f9c27_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ca22c10b126f439d6ba0f2a6d847768d276d3040f7054935e00e5be88b77b2a0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6b35aff2712fc4439757ded0696adc65c8536dcf12f658cb9e9d81a7d52bc841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f31655c07b4fef48514bd854ac1268e07f499feb440ed8f97074f1befc0bc005_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f8d7ed26eec07eedd42beb5df17410b453aa0764fc078aa5c06d3884bf11e430_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:fe2f8bcda8d1e978eac74f8052bd910b39493969f2075e4cec2d5cd2ff2c1529_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:04c18ab8d1b249a9122485acda477c2f46f4542e1105cc614347079c7312e040_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0bd9ec9fd963b0cca9054c9614d95cbace2b5f7f456dac9f61a770705a625c6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4a378205260cae9bf6bbd6d04774120b8f11d729c4ff9f1cabd038cf88d434fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:956e497cfec7776b9912671d12b9aff6b79418d3a1dee87278b098a1d0362d52_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:004e7ceb22780cc16c17a9a7aabec9e58fa2b993daa7cb5f99d635ec53a96b5b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:1d139df4b2f58bc3c25c864bdccbef66feccb1b776b3c71101b56bfe2be8d6da_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:31f29e1e603682bf764291974eec6998453d131995af840954622c2a154193fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47a3798a5bdc1491ac6cfbe23cf4c2f2e53da0774e3f303731e3ad31cef42c20_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2c62a6f62c91f34079a02448957d8ec8430b13e596d47036b6e98c9318815b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8ab7f5c83118c00afda95b9f1398a34e57baf2b31d9a58855512ad7c923ef87d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c884375a0156fd0679fdd7d7598f867cc44770b79a867d9d63774d7aaf78e9ae_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fd8e2292bf9b1b3b80399f5b5099482fbcfbb7c339b0e5dc9f4b474c9023d7b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:06fb16a27cd62ab2f8239528d49b8d4a822dabd40c758a0697413729effc28fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:36e2961aa8d04f198e86b661b58d328785ed877d20aa0aa5ed1d476d0258c945_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9b040cf836a91490681eebb4b520338ae7b5f8c7b74e032e618fd2dfe21fe5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d61366d3c0b86660e17079c04e6353eb912e783c773026e31b5cedd13fb8bfbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:115856ab6c9a9c191497e630d0329d7e194be8f2bede0ab1700f90b2bd0deff0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:14772ad08a9bbdadf6fdf9ffd53d004f71be2fc7c32eee151febc3239d998fcd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3b8cc84b86a9a09cc0e4e41468a1e3ffed2923eb38d5cf55f280d99f7ff1a1d5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d335f7bcee5b845921a252b5d5f28f77642588c50269e5f5b554832160145e3f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:12a21fea0242f8eb41692afb5adc3f36a08e57125b6bb610abbc3118a5e5b8a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1988b20da07bbe6b7835cf2de2c919f2ccc73581a17340570e1a7d9bf6062a0f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:957e0bfc07190044ba1dc1cd2eac0923dd2736f7d33c7693f9e14a638d618678_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e53adf5aca87bb4840b588939a8c73ba3a35b28374c6c882b8f10ef5c069e3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1369c805108a1f8e2b06938632eb3315ec527089262fccff91709075557c45f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:58241babaa2deec66b3d6cd8e5dfef23861fc68da4de7aa4f52535e6545dfdf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dc7f6c4dc7ceb29a438988edaeeaf185e721eac64f985fa3d819fb50d0a5931f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f2a2ade4dacf5d267b5469f0e86c6c7d0f183d2bdd5b25f2ab1004e95d0288ab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:22bb424d2335fe5acbf8900ee09a80d4cbbab0f3edd381d90e24d5dff0affc3c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bdabb6d1d18525f3f5eb1315e038ac49578efda9b46660d6fe9714ac14bf29a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:62d88210e1d1b5c1a1d1f53e871ce31e3e9bc3656e6175418e1298c3f51c0044_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ac2ff13aa97ba2bf94bba95b7b3c31c12faf139b107c67a05b21dacd8df91dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0424c17992cc19347bca5dd00777d494a6d5ef0bda89623d29a64627477c629f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:377c6d8d1702aaf78b2b8aae80adc2e138ce43bbcfdb344286000cefe7b23e38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b58e21b3ff84f92aa146e7d82281cfd384cacabaa8b98d0f2d91bce8b8101306_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc192cb3203d66e1dbbb5e4ecdb6f0c747de26ebfc428aeadbbaa03e31616da6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:50f1b0ee86307d2b6440c895f71825bade74dc2767d07e280ba7ede7dee5a44a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:85a121cb5357659c06641bd7edb45a88c41b55ae0799cdd258c2e90676996166_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:9001702ba90c2b40480628b710e234d8474bb017fcb3454b648580322c63f18a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b63b1e390276c2e59ffcebc2f270064bc52ee7f97bab8bae9b90551d8db76555_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:fbf47ab6eeda6bf2b8be429e6e82d8133c9d88a5b6b272faf3499c59e7ea45e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:a272d944c8865ae2dd880add0fc6a163094856688b425f538890367b441706c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:917e6d3073dd266f579dbc455b65fe3d8a8d1d382523fa466b3150d021c8cf30_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:105b73927374d06339602fcf03a23df51dab38934947e21fcc9b60b46e07c76d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:38179d1db23fa45047344707e0bd0ed79be4acd050d8a6d1b419599fbb4edd45_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:80c204c04b9bf09af889841543b0da2c89ec42381c46441396a027bde1d9416b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:361755eee7ac75a4ce9d81fe522f583245e9045a5d02ecb080e20b78bd387796_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:4d5c21e65a5e162c2210919c8c0bc95c09fb4bded079eda25a812fe6d2b9853f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:691321076d09b9b4bf6d063c895a04cf54b069d00adeb5296339533739211fbd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83dccb71a41cb543c3f6e467c4469df3a3c3518efc70fcf28fc5e9625e1c3a15_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0d5f60a20d1e3a0314a4ec8b3b5ee8203471f0894aee905c9095ba708159ef39_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ce2263955fa69985b744c27595c061d9196046acdd1351e757e5fcd32dc9ed6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:dc354ec435ce978bd4112c6956ee401da2c074b964ca313d23bbd4516fc6044b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e5a9604e0d2388756bc6486a20a1a49a2562092a3e15f4b5879984edbd34e599_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:3bff2b070db17ba07f793b1dd126ba4689d2f2799d3d15b691fe267f2898251c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6a41dfcee939bd9e4f938e726f6288c24859d1d7341959130186cb11cb1d9a05_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b2b08b7c3cc1f161185d5e613bb50390330acaad2f228dd824cbb60b8de36b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:b26a90d1e1e553034a83a4d58a86d9ecaa30cca7f12f1fda5e70c2903ae22ff2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "xmldom: xmldom: Arbitrary XML markup injection"
}
]
}
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.